unstack, sort: cleanup and improvement
[minix.git] / test / ipc / shmdt / Makefile
blob3a61858d9187e7d701ecad3ec1d306112e2736d1
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 = shmdt01 shmdt02
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 shmdt01: shmdt01.c
20 shmdt02: shmdt02.c