64-bit VFS_LSEEK_OFF
[minix3.git] / test / ipc / shmat / Makefile
blobfe01d33cca4e53fe5fe43b3de8747eba7c0b3165
1 # Makefile for the tests
3 CC = exec cc
4 CFLAGS = -Wall -I../lib/
6 PROG = shmat01 shmat02 shmat03
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 shmat01: shmat01.c
20 shmat02: shmat02.c
21 shmat03: shmat03.c