diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2015-02-10 22:25:17 +0100 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2015-02-10 22:25:17 +0100 |
commit | 948c21d5907c78adf00b382d4dc7010b1db5346b (patch) | |
tree | 8714ae7008c00ef66f7d89503e1e6c55aa1c968e /httpd/Makefile | |
parent | 02268e8249893d99ebf903425788e580d12a4cda (diff) | |
download | vdr-plugin-live-948c21d5907c78adf00b382d4dc7010b1db5346b.tar.gz vdr-plugin-live-948c21d5907c78adf00b382d4dc7010b1db5346b.tar.bz2 |
Remove included old 'tntnet' sources.
The LIVE plugin must now be built agains a correctly installed
libtntnet and libcxxtools and their development headers.
Diffstat (limited to 'httpd/Makefile')
-rw-r--r-- | httpd/Makefile | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/httpd/Makefile b/httpd/Makefile deleted file mode 100644 index d21eb2f..0000000 --- a/httpd/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -### The official name of this plugin. -PLUGIN = live - -### Includes and Defines (add further entries here): -INCLUDES += -I. - -### The object files (add further files here): -OBJS = dispatcher.o job.o regex.o worker.o \ - listener.o poller.o tntnet.o - -### The main target: -all: libhttpd.a - -### Implicit rules: - -%.o: %.cpp - $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $< - -### Dependencies: -MAKEDEP = $(CXX) -MM -MG -DEPFILE = .dependencies -$(DEPFILE): Makefile - @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.cpp) > $@ - --include $(DEPFILE) - -### Targets: -libhttpd.a: $(OBJS) - $(AR) r $@ $^ - -clean: - @rm -f *~ *.o core* libhttpd.a proctest $(DEPFILE) - -dist: clean - @echo "Nothing to do for distribution here ..." |