summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3176f97..34d6f4b 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ 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 signal.o
+TESTOBJS=main.o test.o assert.o ctype.o locale.o errno.o time.o signal.o limits.o float.o iso646.o
.SUFFIXES: .defs .d
@@ -17,6 +17,9 @@ testlibc: $(TESTOBJS) $(LIBDIR)/libc.a
assert.o: assert.c test.h
ctype.o: ctype.c test.h
+limits.o: limits.c test.h
+float.o: float.c test.h
+iso646.o: iso646.c test.h
locale.o: locale.c locale.d test.h
errno.o: errno.c test.h
time.o: time.c test.h