diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -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: |