diff options
-rw-r--r-- | httpd/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
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 $@ $^ |