From ff7b11dee37fc9e28a6cc169816e0145eaecfa92 Mon Sep 17 00:00:00 2001 From: Dieter Hametner Date: Thu, 4 Jan 2007 00:23:08 +0000 Subject: Fixed bug in Makefile to build 'all' target if no target argument was given to make call. --- httpd/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'httpd/Makefile') diff --git a/httpd/Makefile b/httpd/Makefile index 2564585..56231ef 100644 --- a/httpd/Makefile +++ b/httpd/Makefile @@ -8,6 +8,12 @@ INCLUDES += -I. OBJS = dispatcher.o job.o regex.o worker.o \ listener.o poller.o tntnet.o +### Default rules: + +.PHONY: all clean + +all: libhttpd.a + ### Implicit rules: %.o: %.cpp @@ -24,8 +30,6 @@ $(DEPFILE): Makefile ### Targets: -all: libhttpd.a - libhttpd.a: $(OBJS) $(AR) r $@ $^ -- cgit v1.2.3