aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d9a5b10..da19c7f 100644
--- a/Makefile
+++ b/Makefile
@@ -81,12 +81,15 @@ doc: $(BUILTMAN)
%.3: %.3.sh
sh $< >$@
-TESTSOURCES=$(wildcard t/*.c)
+TESTSOURCES=$(wildcard t/[0-9]*.c)
TESTFILES=$(TESTSOURCES:.c=.t)
-t/%.t: t/%.c $(LIBRARY)
+t/%.t: t/%.c $(LIBRARY) t/taplib.lo
$(LIBTOOL) --mode=link --tag=CC gcc -o $@ $^
+t/taplib.lo: t/taplib.c
+ $(LIBTOOL) --mode=compile --tag=CC gcc $(CFLAGS) -o $@ -c $^
+
test: $(TESTFILES)
prove -e ""