From fde01d16193b2d7e5b9482bcc97be9450878afab Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 28 Feb 2019 19:19:40 -0500 Subject: initial test for errno --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 156ef2a..3ca5ab2 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ 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 +TESTOBJS=main.o test.o assert.o ctype.o locale.o errno.o testlibc: $(TESTOBJS) $(LIBDIR)/libc.a $(CC) -o $@ $(TESTOBJS) $(LDFLAGS) @@ -16,6 +16,8 @@ ctype.o: ctype.c test.h locale.o: locale.c test.h +errno.o: errno.c test.h + test.o: test.c test.h main.o: main.c test.h -- cgit v1.2.1