summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 85fe6f8..15b0c0a 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,12 @@ include config.mk
CFLAGS=-g -I$(INCLUDEDIR) -nostdinc -fno-builtin
LDFLAGS=-L$(LIBDIR) $(LIBS)
-TESTOBJS=main.o test.o assert.o ctype.o locale.o errno.o time.o
+TESTOBJS=main.o test.o assert.o ctype.o locale.o errno.o time.o signal.o
+
+.SUFFIXES: .defs .d
+
+.defs.d:
+ awk -f defs2d.awk $< > $@
testlibc: $(TESTOBJS) $(LIBDIR)/libc.a
$(CC) -o $@ $(TESTOBJS) $(LDFLAGS)
@@ -15,6 +20,7 @@ ctype.o: ctype.c test.h
locale.o: locale.c test.h
errno.o: errno.c test.h
time.o: time.c test.h
+signal.o: signal.c signal.d
test.o: test.c test.h
main.o: main.c test.h