summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-28 20:35:05 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-28 20:35:05 -0500
commitbeb56a867567447c7e7c3f4f2a948bb3732e74bd (patch)
tree8ccd2b71e52dd28dc59f0897f7e7c2b91a51809a /Makefile
parent3a316e083fdcdf851ba9534a1f2e528e7e0a12b0 (diff)
add some time tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 3ca5ab2..85fe6f8 100644
--- a/Makefile
+++ b/Makefile
@@ -5,21 +5,17 @@ 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
+TESTOBJS=main.o test.o assert.o ctype.o locale.o errno.o time.o
testlibc: $(TESTOBJS) $(LIBDIR)/libc.a
$(CC) -o $@ $(TESTOBJS) $(LDFLAGS)
assert.o: assert.c test.h
-
ctype.o: ctype.c test.h
-
locale.o: locale.c test.h
-
errno.o: errno.c test.h
-
+time.o: time.c test.h
test.o: test.c test.h
-
main.o: main.c test.h
clean: