vm: remove assert, map in of phys addr 0 is legit sometimes.
[minix.git] / test / ipc / shmdt / Makefile
blob34b4a8bf2fa218079438abb53656aaa1f5f738c5
1 # Makefile for the tests
3 CC = exec cc
4 CFLAGS = -Wall -D_MINIX -D_POSIX_SOURCE -I../lib/
6 PROG = shmdt01 shmdt02
8 all: $(PROG)
10 $(PROG): tst_res.o libipc.o tst_sig.o parse_opts.o tst_tmpdir.o rmobj.o
11 $(CC) $(CFLAGS) -o $@ $@.c tst_res.o libipc.o tst_sig.o parse_opts.o tst_tmpdir.o rmobj.o
13 rmobj.o: ../lib/rmobj.c
14 $(CC) $(CFLAGS) -c -o rmobj.o ../lib/rmobj.c
16 tst_res.o: ../lib/tst_res.c
17 $(CC) $(CFLAGS) -c -o tst_res.o ../lib/tst_res.c
19 tst_sig.o: ../lib/tst_sig.c
20 $(CC) $(CFLAGS) -c -o tst_sig.o ../lib/tst_sig.c
22 tst_tmpdir.o: ../lib/tst_tmpdir.c
23 $(CC) $(CFLAGS) -c -o tst_tmpdir.o ../lib/tst_tmpdir.c
25 parse_opts.o: ../lib/parse_opts.c
26 $(CC) $(CFLAGS) -c -o parse_opts.o ../lib/parse_opts.c
28 libipc.o: ../lib/libipc.c
29 $(CC) $(CFLAGS) -c -o libipc.o ../lib/libipc.c
31 clean:
32 /usr/bin/rm -f *.o $(PROG)
34 test:
35 sh ./test.sh
37 shmdt01: shmdt01.c
38 shmdt02: shmdt02.c