summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-01 21:36:22 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-01 21:36:22 -0500
commit306613c5a17842fc6967f9a9a3722a63767c3b75 (patch)
treebf74e7e66e8e6167292dd92feb2dd1d6cee4ba85 /Makefile
parent3289aef6dd90453f46f0ba3102ae184734374dc7 (diff)
skeleton tests for all C99 headers
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 61bd4d3..9d75446 100644
--- a/Makefile
+++ b/Makefile
@@ -2,14 +2,18 @@
include config.mk
+CC=c99
CFLAGS=-g -I$(INCLUDEDIR) -nostdinc -fno-builtin
LDFLAGS=-L$(LIBDIR) $(LIBS)
TESTOBJS=main.o \
assert.o \
+ complex.o \
ctype.o \
errno.o \
+ fenv.o \
float.o \
+ inttypes.o \
iso646.o \
limits.o \
locale.o \
@@ -19,10 +23,14 @@ TESTOBJS=main.o \
stdarg.o \
stdbool.o \
stddef.o \
+ stdint.o \
stdio.o \
stdlib.o \
string.o \
+ tgmath.o \
time.o \
+ wchar.o \
+ wctype.o \
test.o
testlibc: $(TESTOBJS) $(LIBDIR)/libc.a