sort: add -x hex sort feature back
[minix.git] / test / ipc / shmctl / Makefile
blob9ccfbee90f6483b8ee7f677fae62653413255da5
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 = shmctl01 shmctl02 shmctl03 shmctl04
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 shmctl01: shmctl01.c
20 shmctl02: shmctl02.c
21 shmctl03: shmctl03.c
22 shmctl04: shmctl04.c