summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-01 19:30:30 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-01 19:30:30 -0500
commit8396c02590a6a0d34d0ba667c5e5cff4860d1ebc (patch)
tree656562ee65309d548c57dc420d49e46e31ebddc1 /Makefile
parent4db28a13a8bbc2eabe69f2b86eda392f3bd72274 (diff)
basic tests for <limits.h>, <float.h>, and <iso646.h>
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