summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile41
1 files changed, 37 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 34d6f4b..9933928 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,19 @@ 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 limits.o float.o iso646.o
+TESTOBJS=main.o \
+ assert.o \
+ ctype.o \
+ errno.o \
+ float.o \
+ iso646.o \
+ limits.o \
+ locale.o \
+ signal.o \
+ stdbool.o \
+ stddef.o \
+ time.o \
+ test.o
.SUFFIXES: .defs .d
@@ -16,14 +28,35 @@ testlibc: $(TESTOBJS) $(LIBDIR)/libc.a
$(CC) -o $@ $(TESTOBJS) $(LDFLAGS)
assert.o: assert.c test.h
+complex.o: complex.c test.h
ctype.o: ctype.c test.h
-limits.o: limits.c test.h
+errno.o: errno.c test.h
+fenv.o: fenv.c test.h
float.o: float.c test.h
+inttypes.o: inttypes.c test.h
iso646.o: iso646.c test.h
+limits.o: limits.c test.h
locale.o: locale.c locale.d test.h
-errno.o: errno.c test.h
-time.o: time.c test.h
+math.o: math.c test.h
+setjmp.o: setjmp.c test.h
signal.o: signal.c signal.d test.h
+stdalign.o: stdalign.c test.h
+stdard.o: stdarg.c test.h
+stdatomic.o: stdatomic.c test.h
+stdbool.o: stdbool.c test.h
+stddef.o: stddef.c test.h
+stdint.o: stdint.c test.h
+stdio.o: stdio.c test.h
+stdlib.o: stdlib.c test.h
+stdnoreturn.o: stdnoreturn.c test.h
+string.o: string.c test.h
+tgmath.o: tgmath.c test.h
+threads.o: threads.c test.h
+time.o: time.c test.h
+uchar.o: uchar.c test.h
+wchar.o: wchar.c test.h
+wctype.o: wctype.c test.h
+
test.o: test.c test.h
main.o: main.c test.h