OSDN Git Service

selftests: remove duplicated all and clean target
[tomoyo/tomoyo-test1.git] / tools / testing / selftests / ipc / Makefile
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
11
12 CFLAGS += -I../../../../usr/include/
13
14 TEST_GEN_PROGS := msgque
15
16 include ../lib.mk
17