From ef892c7fd1c07d6f8a9d44330de2e989b24e7407 Mon Sep 17 00:00:00 2001 From: louis Date: Mon, 2 Sep 2013 14:28:24 +0200 Subject: introduced possibility to ignore titles, set scrap type and substitute search strings manually --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 52439ba..b1a8662 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,7 @@ PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(s LIBDIR = $(call PKGCFG,libdir) LOCDIR = $(call PKGCFG,locdir) PLGCFG = $(call PKGCFG,plgcfg) +PLGCONFDIR = $(call PKGCFG,configdir)/plugins/$(PLUGIN) # TMPDIR ?= /tmp @@ -113,7 +114,11 @@ $(SOFILE): $(OBJS) install-lib: $(SOFILE) install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION) -install: install-lib install-i18n +install-conf: + @mkdir -p $(PLGCONFDIR) + @if [ ! -f $(PLGCONFDIR)/override.conf ]; then cp conf/override.conf $(PLGCONFDIR); fi; + +install: install-lib install-i18n install-conf dist: $(I18Npo) clean @-rm -rf $(TMPDIR)/$(ARCHIVE) -- cgit v1.2.3