summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY3
-rw-r--r--Makefile4
2 files changed, 4 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index 8562cf5..bff79de 100644
--- a/HISTORY
+++ b/HISTORY
@@ -274,4 +274,5 @@ NOTE: I havent found time to include all of the languages, will be done in pre2
- some little fixes in the dx3interface: if we cant open control fifo plugins retuns now correct error message
- removed -lz from makefile
- compiles now with 3.4.x gcc's
-- added support for vdr-1.3.18 - thanks to Luca Olivetti <luca@ventoso.org> \ No newline at end of file
+- added support for vdr-1.3.18 - thanks to Luca Olivetti <luca@ventoso.org>
+- use $CXX for generating dependencies instead of hardcoded g++
diff --git a/Makefile b/Makefile
index 1d86693..14ee634 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile,v 1.11 2005/01/10 16:10:39 austriancoder Exp $
+# $Id: Makefile,v 1.12 2005/03/14 11:24:23 scop Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -69,7 +69,7 @@ dxr3cpu.o dxr3memcpy.o dxr3dolbydigital.o
# Dependencies:
-MAKEDEP = g++ -MM -MG
+MAKEDEP = $(CXX) -MM -MG
DEPFILE = .dependencies
$(DEPFILE): Makefile
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@