summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 5a381f7..dafbcdf 100644
--- a/Makefile
+++ b/Makefile
@@ -4,10 +4,6 @@
include config.mk
-CC=c99
-CFLAGS=-g -I$(INCLUDEDIR) -nostdinc -fno-builtin
-LDFLAGS=-L$(LIBDIR) $(LIBS)
-
TESTOBJS=main.o \
assert.o \
complex.o \
@@ -40,7 +36,7 @@ TESTOBJS=main.o \
wctype.o \
test.o
-testlibc: $(TESTOBJS) $(LIBDIR)/libc.a
+testlibc: $(TESTOBJS)
$(CC) -o $@ $(TESTOBJS) $(LDFLAGS)
$(TESTOBJS): test.h