diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-01-18 12:40:17 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-01-18 12:40:17 +0100 |
commit | fbe4f2a0568a1bf893f2bf970edcbb3d345e5db5 (patch) | |
tree | f6fe25555abc1fbcce6e2d62030fcdfbf632562e /PLUGINS/src/servicedemo | |
parent | 6469b666bd15110091da0a23a3f4e25a481b0ef7 (diff) | |
download | vdr-fbe4f2a0568a1bf893f2bf970edcbb3d345e5db5.tar.gz vdr-fbe4f2a0568a1bf893f2bf970edcbb3d345e5db5.tar.bz2 |
Some improvements to the Makefiles
Diffstat (limited to 'PLUGINS/src/servicedemo')
-rw-r--r-- | PLUGINS/src/servicedemo/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/PLUGINS/src/servicedemo/Makefile b/PLUGINS/src/servicedemo/Makefile index 2c8b17b4..b2713ed7 100644 --- a/PLUGINS/src/servicedemo/Makefile +++ b/PLUGINS/src/servicedemo/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 2.3 2011/02/27 10:05:04 kls Exp $ +# $Id: Makefile 2.4 2012/01/18 12:17:23 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -22,9 +22,9 @@ CXXFLAGS ?= -g -O3 -Wall -Woverloaded-virtual -Wno-parentheses ### The directory environment: -VDRDIR = ../../.. -LIBDIR = ../../lib -TMPDIR = /tmp +VDRDIR ?= ../../.. +LIBDIR ?= ../../lib +TMPDIR ?= /tmp ### Make sure that necessary options are included: @@ -64,7 +64,7 @@ all: libvdr-$(PLUGIN1).so libvdr-$(PLUGIN2).so # Dependencies: -MAKEDEP = g++ -MM -MG +MAKEDEP = $(CXX) -MM -MG DEPFILE = .dependencies $(DEPFILE): Makefile @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ |