summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorscop <scop>2005-03-14 11:24:23 +0000
committerscop <scop>2005-03-14 11:24:23 +0000
commit2dc24e4fdf965a20b273aaff12ba93c590621a44 (patch)
tree41621bd1be68c21e4829f8494fbabf8406db1159 /Makefile
parent9b56a2919bfbc4fe19b5c19491189a9fbd8a1f90 (diff)
downloadvdr-plugin-dxr3-2dc24e4fdf965a20b273aaff12ba93c590621a44.tar.gz
vdr-plugin-dxr3-2dc24e4fdf965a20b273aaff12ba93c590621a44.tar.bz2
Merge from stable: use $CXX for generating dependencies instead of hardcoded g++.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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) > $@