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 /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 'Makefile')
-rw-r--r-- | Makefile | 37 |
1 files changed, 2 insertions, 35 deletions
@@ -1,5 +1,5 @@ # -# Makefile for a Video Disk Recorder plugin +# Makefile for the 'LIVE' Video Disk Recorder plugin # # The official name of this plugin. @@ -64,18 +64,8 @@ PACKAGE = vdr-$(ARCHIVE) SOFILE = libvdr-$(PLUGIN).so ### Includes and Defines (add further entries here): -ifneq ($(TNTVERS7),yes) - INCLUDES += -Ihttpd - LIBS += httpd/libhttpd.a -endif - DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"' -DTNTVERSION=$(TNTVERSION) -DCXXTOOLVER=$(CXXTOOLVER) - SUBDIRS = pages css javascript -ifneq ($(TNTVERS7),yes) - SUBDIRS += httpd -endif - VERSIONSUFFIX = gen_version_suffix.h ### The object files (add further files here): @@ -142,36 +132,13 @@ $(SOFILE): $(VERSIONSUFFIX) $(SUBDIRS) $(PLUGINOBJS) for SUBDIR in $(SUBDIRS); \ do $(MAKE) -C $${SUBDIR} PLUGINFEATURES="$(PLUGINFEATURES)" all; \ done - $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(PLUGINOBJS) -Wl,--whole-archive $(WEBLIBS) -Wl,--no-whole-archive $(LIBS) -o $@ + $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(PLUGINOBJS) -Wl,--whole-archive $(WEBLIBS) -Wl,--no-whole-archive $(LIBS) -o $@ install-lib: $(SOFILE) install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION) install: install-lib install-i18n -ifneq ($(TNTVERS7),yes) - @echo "" - @echo "LIVE was built successfully and you can try to use it!" - @echo "" - @echo "" - @echo "" - @echo "" - @echo "IMPORTANT INFORMATION:" - @echo "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++" - @echo "+ This is one of the *last* CVS versions of LIVE which will +" - @echo "+ work with versions of tntnet *less* than 1.6.0.6! +" - @echo "+ +" - @echo "+ This version of LIVE already supports tntnet >= 1.6.0.6. +" - @echo "+ +" - @echo "+ Please upgrade tntnet to at least version 1.6.0.6 soon, if +" - @echo "+ you want to keep track of bleeding edge LIVE development. +" - @echo "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++" - @echo "" - @echo "" - @echo "" - @echo "" -endif - dist: $(I18Npo) clean @-rm -rf $(TMPDIR)/$(ARCHIVE) @mkdir $(TMPDIR)/$(ARCHIVE) |