summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index cf84102..ad673b4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,14 @@
-CC=c89
-CFLAGS=-Wall -Wextra -Wpedantic
+.POSIX:
-testlibc: main.o test.o assert.o ctype.o locale.o
- $(CC) -o $@ *.o
+include config.mk
+
+CFLAGS=-I$(INCLUDEDIR) -nostdinc -fno-builtin
+LDFLAGS=-L$(LIBDIR) $(LIBS)
+
+TESTOBJS=main.o test.o assert.o ctype.o locale.o
+
+testlibc: $(TESTOBJS)
+ $(CC) -o $@ $(TESTOBJS) $(LDFLAGS)
assert.o: assert.c test.h