diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-04 00:23:08 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-04 00:23:08 +0000 |
commit | ff7b11dee37fc9e28a6cc169816e0145eaecfa92 (patch) | |
tree | 2e6803a66a44c4522cb3e8dcad110c990227f78b | |
parent | ac5e883938b9ccac28edf3fa5b66939b0999d0ba (diff) | |
download | vdr-plugin-live-ff7b11dee37fc9e28a6cc169816e0145eaecfa92.tar.gz vdr-plugin-live-ff7b11dee37fc9e28a6cc169816e0145eaecfa92.tar.bz2 |
Fixed bug in Makefile to build 'all' target if no target argument was given to make call.
-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 $@ $^ |