summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-04 00:23:08 +0000
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-04 00:23:08 +0000
commitff7b11dee37fc9e28a6cc169816e0145eaecfa92 (patch)
tree2e6803a66a44c4522cb3e8dcad110c990227f78b
parentac5e883938b9ccac28edf3fa5b66939b0999d0ba (diff)
downloadvdr-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/Makefile8
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 $@ $^