minix/test/ipc/shmt/Makefile
Lionel Sambuc 8e4736f2df Removing obsolete _MINIX define
Change-Id: Id33ac7e973d1c0e249b690fe44a597474fac6076
2013-02-26 09:44:20 +00:00

29 lines
417 B
Makefile

# Makefile for the tests
CC = exec cc
CFLAGS = -Wall -I../lib/
PROG = shmt02 shmt03 shmt04 shmt05 shmt06 \
shmt07 shmt08 shmt10 shmt01
all: $(PROG)
$(PROG): ../libipc.a
$(CC) $(CFLAGS) -o $@ $@.c ../libipc.a
test:
sh testshm.sh
clean:
rm -f *.o $(PROG)
shmt01: shmt01.c
shmt02: shmt02.c
shmt03: shmt03.c
shmt04: shmt04.c
shmt05: shmt05.c
shmt06: shmt06.c
shmt07: shmt07.c
shmt08: shmt08.c
shmt10: shmt10.c