summaryrefslogtreecommitdiff
path: root/PLUGINS
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-12-21 11:38:09 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2012-12-21 11:38:09 +0100
commitdf33d402cac1904fe0073d3c5065d9946765bcfe (patch)
tree2ba5d427898f760448d40855e2966f5301aca1b2 /PLUGINS
parent65223eb8fdca24961b21db422648e8432bcf05bb (diff)
downloadvdr-df33d402cac1904fe0073d3c5065d9946765bcfe.tar.gz
vdr-df33d402cac1904fe0073d3c5065d9946765bcfe.tar.bz2
Replaced some 'SOFILE: command not found with '$^'
Diffstat (limited to 'PLUGINS')
-rw-r--r--PLUGINS/src/dvbsddevice/Makefile4
-rw-r--r--PLUGINS/src/epgtableid0/Makefile4
-rw-r--r--PLUGINS/src/hello/Makefile4
-rw-r--r--PLUGINS/src/osddemo/Makefile4
-rw-r--r--PLUGINS/src/pictures/Makefile4
-rw-r--r--PLUGINS/src/rcu/Makefile4
-rw-r--r--PLUGINS/src/skincurses/Makefile4
-rw-r--r--PLUGINS/src/status/Makefile4
-rw-r--r--PLUGINS/src/svdrpdemo/Makefile4
9 files changed, 18 insertions, 18 deletions
diff --git a/PLUGINS/src/dvbsddevice/Makefile b/PLUGINS/src/dvbsddevice/Makefile
index 9fb419eb..be29bdf4 100644
--- a/PLUGINS/src/dvbsddevice/Makefile
+++ b/PLUGINS/src/dvbsddevice/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 1.12 2012/12/20 14:02:10 kls Exp $
+# $Id: Makefile 1.13 2012/12/21 11:35:50 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -75,7 +75,7 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
@mkdir -p $(LIBDIR)
- @cp --remove-destination $(SOFILE) $(LIBDIR)/$(SOFILE).$(APIVERSION)
+ @cp --remove-destination $^ $(LIBDIR)/$^.$(APIVERSION)
install: install-lib
diff --git a/PLUGINS/src/epgtableid0/Makefile b/PLUGINS/src/epgtableid0/Makefile
index fc12221e..9be4cdbb 100644
--- a/PLUGINS/src/epgtableid0/Makefile
+++ b/PLUGINS/src/epgtableid0/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 1.5 2012/12/20 14:02:17 kls Exp $
+# $Id: Makefile 1.6 2012/12/21 11:35:56 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -75,7 +75,7 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
@mkdir -p $(LIBDIR)
- @cp --remove-destination $(SOFILE) $(LIBDIR)/$(SOFILE).$(APIVERSION)
+ @cp --remove-destination $^ $(LIBDIR)/$^.$(APIVERSION)
install: install-lib
diff --git a/PLUGINS/src/hello/Makefile b/PLUGINS/src/hello/Makefile
index 3fb9327d..6f720f60 100644
--- a/PLUGINS/src/hello/Makefile
+++ b/PLUGINS/src/hello/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 2.12 2012/12/20 13:34:41 kls Exp $
+# $Id: Makefile 2.13 2012/12/21 11:36:15 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -102,7 +102,7 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
@mkdir -p $(LIBDIR)
- @cp --remove-destination $(SOFILE) $(LIBDIR)/$(SOFILE).$(APIVERSION)
+ @cp --remove-destination $^ $(LIBDIR)/$^.$(APIVERSION)
install: install-lib install-i18n
diff --git a/PLUGINS/src/osddemo/Makefile b/PLUGINS/src/osddemo/Makefile
index db3ba76f..60b5486b 100644
--- a/PLUGINS/src/osddemo/Makefile
+++ b/PLUGINS/src/osddemo/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 2.7 2012/12/20 13:34:45 kls Exp $
+# $Id: Makefile 2.8 2012/12/21 11:36:59 kls Exp $
# The official name of this plugin.
@@ -73,7 +73,7 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
@mkdir -p $(LIBDIR)
- @cp --remove-destination $(SOFILE) $(LIBDIR)/$(SOFILE).$(APIVERSION)
+ @cp --remove-destination $^ $(LIBDIR)/$^.$(APIVERSION)
install: install-lib
diff --git a/PLUGINS/src/pictures/Makefile b/PLUGINS/src/pictures/Makefile
index 5a165dcf..d04378ee 100644
--- a/PLUGINS/src/pictures/Makefile
+++ b/PLUGINS/src/pictures/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 2.12 2012/12/20 14:00:40 kls Exp $
+# $Id: Makefile 2.13 2012/12/21 11:37:07 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -102,7 +102,7 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
@mkdir -p $(LIBDIR)
- @cp --remove-destination $(SOFILE) $(LIBDIR)/$(SOFILE).$(APIVERSION)
+ @cp --remove-destination $^ $(LIBDIR)/$^.$(APIVERSION)
install: install-lib install-i18n
diff --git a/PLUGINS/src/rcu/Makefile b/PLUGINS/src/rcu/Makefile
index 83dab778..77c332b7 100644
--- a/PLUGINS/src/rcu/Makefile
+++ b/PLUGINS/src/rcu/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 1.5 2012/12/20 14:01:00 kls Exp $
+# $Id: Makefile 1.6 2012/12/21 11:37:13 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -75,7 +75,7 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
@mkdir -p $(LIBDIR)
- @cp --remove-destination $(SOFILE) $(LIBDIR)/$(SOFILE).$(APIVERSION)
+ @cp --remove-destination $^ $(LIBDIR)/$^.$(APIVERSION)
install: install-lib
diff --git a/PLUGINS/src/skincurses/Makefile b/PLUGINS/src/skincurses/Makefile
index 51371bdb..d8e312b1 100644
--- a/PLUGINS/src/skincurses/Makefile
+++ b/PLUGINS/src/skincurses/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 2.12 2012/12/20 14:01:24 kls Exp $
+# $Id: Makefile 2.13 2012/12/21 11:37:32 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -102,7 +102,7 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
@mkdir -p $(LIBDIR)
- @cp --remove-destination $(SOFILE) $(LIBDIR)/$(SOFILE).$(APIVERSION)
+ @cp --remove-destination $^ $(LIBDIR)/$^.$(APIVERSION)
install: install-lib install-i18n
diff --git a/PLUGINS/src/status/Makefile b/PLUGINS/src/status/Makefile
index 37940cb0..1352ffc1 100644
--- a/PLUGINS/src/status/Makefile
+++ b/PLUGINS/src/status/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 2.7 2012/12/20 13:35:33 kls Exp $
+# $Id: Makefile 2.8 2012/12/21 11:37:44 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -75,7 +75,7 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
@mkdir -p $(LIBDIR)
- @cp --remove-destination $(SOFILE) $(LIBDIR)/$(SOFILE).$(APIVERSION)
+ @cp --remove-destination $^ $(LIBDIR)/$^.$(APIVERSION)
install: install-lib
diff --git a/PLUGINS/src/svdrpdemo/Makefile b/PLUGINS/src/svdrpdemo/Makefile
index 86930531..924cdf39 100644
--- a/PLUGINS/src/svdrpdemo/Makefile
+++ b/PLUGINS/src/svdrpdemo/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 2.7 2012/12/20 13:35:36 kls Exp $
+# $Id: Makefile 2.8 2012/12/21 11:37:54 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -75,7 +75,7 @@ $(SOFILE): $(OBJS)
install-lib: $(SOFILE)
@mkdir -p $(LIBDIR)
- @cp --remove-destination $(SOFILE) $(LIBDIR)/$(SOFILE).$(APIVERSION)
+ @cp --remove-destination $^ $(LIBDIR)/$^.$(APIVERSION)
install: install-lib