summaryrefslogtreecommitdiff
path: root/PLUGINS/src/servicedemo/Makefile
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-08-15 13:20:04 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-08-15 13:20:04 +0200
commita551b5b124c9c67227f7fde9f3f7e27ee2bd441a (patch)
treef8957e4b5ecf10a202c731bad79162c7a7b0f42e /PLUGINS/src/servicedemo/Makefile
parent0979904dfca6da24d45d06f9c2e9a692d56eb150 (diff)
downloadvdr-a551b5b124c9c67227f7fde9f3f7e27ee2bd441a.tar.gz
vdr-a551b5b124c9c67227f7fde9f3f7e27ee2bd441a.tar.bz2
Moved the "all" target in plugin Makefiles before the "Implicit rules"
Diffstat (limited to 'PLUGINS/src/servicedemo/Makefile')
-rw-r--r--PLUGINS/src/servicedemo/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/PLUGINS/src/servicedemo/Makefile b/PLUGINS/src/servicedemo/Makefile
index a18f9950..9625953f 100644
--- a/PLUGINS/src/servicedemo/Makefile
+++ b/PLUGINS/src/servicedemo/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile 1.8 2006/09/09 12:38:35 kls Exp $
+# $Id: Makefile 1.9 2007/08/15 13:05:42 kls Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -49,6 +49,10 @@ DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
OBJS = $(PLUGIN1).o $(PLUGIN2).o
+### The main target:
+
+all: libvdr-$(PLUGIN1).so libvdr-$(PLUGIN2).so
+
### Implicit rules:
%.o: %.c
@@ -65,8 +69,6 @@ $(DEPFILE): Makefile
### Targets:
-all: libvdr-$(PLUGIN1).so libvdr-$(PLUGIN2).so
-
libvdr-$(PLUGIN1).so: $(PLUGIN1).o
$(CXX) $(CXXFLAGS) -shared $(PLUGIN1).o -o $@
@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)