diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-28 10:09:41 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-28 10:09:41 +0100 |
commit | acbe56f6d0c29fb39b810600dbaaa83bc44c8538 (patch) | |
tree | db650c60511564ff76148ea3b52ddc81858eee77 /newplugin | |
parent | f70414cf5b6f2fe44187e7bf35efd270c3def585 (diff) | |
download | vdr-acbe56f6d0c29fb39b810600dbaaa83bc44c8538.tar.gz vdr-acbe56f6d0c29fb39b810600dbaaa83bc44c8538.tar.bz2 |
Plugin Makefiles can now include a configuration file for compile time parameters
Diffstat (limited to 'newplugin')
-rwxr-xr-x | newplugin | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -12,7 +12,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: newplugin 2.14 2012/12/23 10:05:22 kls Exp $ +# $Id: newplugin 2.15 2012/12/28 09:52:29 kls Exp $ $PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n"; @@ -78,6 +78,7 @@ VERSION = \$(shell grep 'static const char \\*VERSION *=' \$(PLUGIN).c | awk '{ PKGCFG = \$(if \$(VDRDIR),\$(shell pkg-config --variable=\$(1) \$(VDRDIR)/vdr.pc),\$(shell pkg-config --variable=\$(1) vdr || pkg-config --variable=\$(1) ../../../vdr.pc)) LIBDIR = \$(DESTDIR)\$(call PKGCFG,libdir) LOCDIR = \$(DESTDIR)\$(call PKGCFG,locdir) +PLGCFG = \$(call PKGCFG,plgcfg) # TMPDIR ?= /tmp @@ -90,6 +91,10 @@ export CXXFLAGS = \$(call PKGCFG,cxxflags) APIVERSION = \$(call PKGCFG,apiversion) +### Allow user defined options to overwrite defaults: + +-include \$(PLGCFG) + ### The name of the distribution archive: ARCHIVE = \$(PLUGIN)-\$(VERSION) |