VM: simplify slab allocator
[minix.git] / test / ipc / shmget / Makefile
blobbf814600ed80fc9f98bbdcaeb9b5e7841af96d8d
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 = shmget01 shmget02 shmget04 shmget05
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 shmget01: shmget01.c
20 shmget02: shmget02.c
21 shmget04: shmget04.c
22 shmget05: shmget05.c