make vfs & filesystems use failable copying
[minix3.git] / test / ipc / semop / Makefile
blob1bc7e24c3bf487edb1738d37bde17480d269c1c0
1 # Makefile for the tests
3 CC = exec cc
4 CFLAGS = -Wall -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