vm: fix region reporting bug
[minix.git] / test / ipc / shmat / Makefile
blob0a6c9fddd1ec8ec0dd455a3b8bc5c45461a933f1
1 # Makefile for the tests
3 CC = exec cc
4 CFLAGS = -Wall -D_MINIX -D_POSIX_SOURCE -D_NETBSD_SOURCE=1 -I../lib/
6 PROG = shmat01 shmat02 shmat03
8 all: $(PROG)
10 $(PROG): ../libipc.a
11 $(CC) $(CFLAGS) -o $@ $@.c ../libipc.a
13 clean:
14 rm -f *.o $(PROG)
16 test:
17 sh ./test.sh
19 shmat01: shmat01.c
20 shmat02: shmat02.c
21 shmat03: shmat03.c