From 2903af5f60a2aa5446015456e158d73b0f5f6473 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Sat, 28 Apr 2012 00:35:36 -0400 Subject: [PATCH] update makefile --- makefile.mk | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/makefile.mk b/makefile.mk index ee35019..0372c97 100644 --- a/makefile.mk +++ b/makefile.mk @@ -1,6 +1,6 @@ CFLAGS += $(DEFINES) -v -w OBJS = main.o gopher.o url.o connection.o readline2.o scheme.o ftype.o setftype.o \ - s16debug.o common.o http.0.9.o http.1.0.o dictionary.o + s16debug.o common.o http.o dictionary.o gopher: $(OBJS) $(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@ @@ -18,8 +18,7 @@ readline2.o: readline2.c readline2.h common.o: common.c gopher.o: gopher.c url.h connection.h -http.0.9.o: http.0.9.c -http.1.0.o: http.1.0.c +http.o: http.c data.o: data.c data.h dictionary.o: dictionary.c dictionary.h