From 306613c5a17842fc6967f9a9a3722a63767c3b75 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Fri, 1 Mar 2019 21:36:22 -0500 Subject: skeleton tests for all C99 headers --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Makefile') 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 -- cgit v1.2.1