From 8396c02590a6a0d34d0ba667c5e5cff4860d1ebc Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 1 Mar 2019 19:30:30 -0500 Subject: basic tests for , , and --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.1