From 8c5c7e43c60323a1a7fa5cc5e2d3a021c359102e Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Sun, 15 Apr 2012 21:49:04 -0400 Subject: [PATCH] update makefile --- makefile.mk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/makefile.mk b/makefile.mk index 5d0d6ad..34540bd 100644 --- a/makefile.mk +++ b/makefile.mk @@ -1,5 +1,5 @@ CFLAGS += $(DEFINES) -v -w -OBJS = gopher.o url.o connection.o +OBJS = gopher.o url.o connection.o readline2.o scheme.o ftype.o setftype.o gopher: $(OBJS) $(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@ @@ -14,9 +14,15 @@ dtest: dtest.o dictionary.o gopher.o: gopher.c url.h connection.h url.o: url.c url.h connection.o: connection.c connection.h +readline2.o: readline2.c readline2.h + data.o: data.c data.h dictionary.o: dictionary.c dictionary.h +setftype.o: setftype.c +scheme.o: scheme.c url.h +ftype.o: ftype.c + # tests utest.o: utest.c dtest.o: dtest.c