minix/test/Makefile

58 lines
1.3 KiB
Makefile
Raw Normal View History

DBG=-O0 -g
CFLAGS+= -Wall -Werror -fno-builtin
LDADD+= -lm -lcompat_minix
2005-04-21 16:53:53 +02:00
# Tests have no manpages
MKMAN=no
2005-04-21 16:53:53 +02:00
# They are all bin-owned; by default normal executable mode
BINOWN=root
2005-04-21 16:53:53 +02:00
# Some have special flags compiling
CFLAGS.test51=-mhard-float
CFLAGS.test52=-mhard-float
2005-04-21 16:53:53 +02:00
# Some have special libraries
LDADD.test59= -lmthread
LDFLAGS.mod= -shared # make shared object
2005-04-21 16:53:53 +02:00
# Some have an extra file
OBJS.test57=test57loop.o
2005-04-21 16:53:53 +02:00
.for t in \
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 \
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 \
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 \
61 62 64 65 66 67
PROG+= test$(t)
.endfor
PROG+= t10a t11a t11b t40a t40b t40c t40d t40e t40f t60a t60b t67a t67b
.include <bsd.own.mk>
.if $(MKPIC) == "yes"
# Build them as dynamic executables by default if shared libraries
# are available; so that the building and executing of dynamic
# executables is tested
2012-11-16 20:20:52 +01:00
LDSTATIC= -dynamic
# Add test that must be linked dynamically, and its dynamically loaded
# module
PROG+= test63 mod
.endif
2005-04-21 16:53:53 +02:00
.include <bsd.prog.mk>
# Some are suid-root
all:
2012-11-15 18:38:16 +01:00
chmod 4755 test11 test33 test43 test44 test46 test56 test60 test61 \
test65
clean: .PHONY .MAKE
$(MAKE) -C select clean
rm -rf *.o *.s *.bak test? test?? t10a t11a t11b \
2012-02-17 17:12:44 +01:00
t40a t40b t40c t40d t40e t40f \
t60a t60b t67a t67b \
DIR*