diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-03-01 19:30:30 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-03-01 19:30:30 -0500 |
commit | 8396c02590a6a0d34d0ba667c5e5cff4860d1ebc (patch) | |
tree | 656562ee65309d548c57dc420d49e46e31ebddc1 /Makefile | |
parent | 4db28a13a8bbc2eabe69f2b86eda392f3bd72274 (diff) |
basic tests for <limits.h>, <float.h>, and <iso646.h>
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 |