vm: fix region reporting bug
[minix.git] / test / ipc / semop / Makefile
blob88daa7fbfc2105f93ce22279dd26d36836cb9b32
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 = semop01 semop02 semop03 semop04 semop05
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 semop01: semop01.c
20 semop02: semop02.c
21 semop03: semop03.c
22 semop04: semop04.c
23 semop05: semop05.c