tests: fix IPC test set
- use one single library instead of loose library files - we don't have ftime() anymore - shmat(non-NULL) is currently broken, fix shmt test set to bypass this - some other small issues
This commit is contained in:
@@ -1,32 +1,14 @@
|
||||
# Makefile for the tests
|
||||
|
||||
CC = exec cc
|
||||
CFLAGS = -Wall -D_MINIX -D_POSIX_SOURCE -I../lib/
|
||||
CFLAGS = -Wall -D_MINIX -D_POSIX_SOURCE -D_NETBSD_SOURCE=1 -I../lib/
|
||||
|
||||
PROG = semop01 semop02 semop03 semop04 semop05
|
||||
|
||||
all: $(PROG)
|
||||
|
||||
$(PROG): tst_res.o libipc.o tst_sig.o parse_opts.o tst_tmpdir.o rmobj.o
|
||||
$(CC) $(CFLAGS) -o $@ $@.c tst_res.o libipc.o tst_sig.o parse_opts.o tst_tmpdir.o rmobj.o
|
||||
|
||||
rmobj.o: ../lib/rmobj.c
|
||||
$(CC) $(CFLAGS) -c -o rmobj.o ../lib/rmobj.c
|
||||
|
||||
tst_res.o: ../lib/tst_res.c
|
||||
$(CC) $(CFLAGS) -c -o tst_res.o ../lib/tst_res.c
|
||||
|
||||
tst_sig.o: ../lib/tst_sig.c
|
||||
$(CC) $(CFLAGS) -c -o tst_sig.o ../lib/tst_sig.c
|
||||
|
||||
tst_tmpdir.o: ../lib/tst_tmpdir.c
|
||||
$(CC) $(CFLAGS) -c -o tst_tmpdir.o ../lib/tst_tmpdir.c
|
||||
|
||||
parse_opts.o: ../lib/parse_opts.c
|
||||
$(CC) $(CFLAGS) -c -o parse_opts.o ../lib/parse_opts.c
|
||||
|
||||
libipc.o: ../lib/libipc.c
|
||||
$(CC) $(CFLAGS) -c -o libipc.o ../lib/libipc.c
|
||||
$(PROG): ../libipc.a
|
||||
$(CC) $(CFLAGS) -o $@ $@.c ../libipc.a
|
||||
|
||||
clean:
|
||||
rm -f *.o $(PROG)
|
||||
|
||||
Reference in New Issue
Block a user