diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |