drm/radeon: comment out some currently unused 7xx dpm code
[linux/fpc-iii.git] / tools / testing / selftests / ipc / Makefile
blob74bbefdeaf4c187b07c02e67fedd74619f6215d6
1 uname_M := $(shell uname -m 2>/dev/null || echo not)
2 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
3 ifeq ($(ARCH),i386)
4 ARCH := x86
5 CFLAGS := -DCONFIG_X86_32 -D__i386__
6 endif
7 ifeq ($(ARCH),x86_64)
8 ARCH := x86
9 CFLAGS := -DCONFIG_X86_64 -D__x86_64__
10 endif
12 CFLAGS += -I../../../../usr/include/
14 all:
15 ifeq ($(ARCH),x86)
16 gcc $(CFLAGS) msgque.c -o msgque_test
17 else
18 echo "Not an x86 target, can't build msgque selftest"
19 endif
21 run_tests: all
22 ./msgque_test
24 clean:
25 rm -fr ./msgque_test