diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -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++ @@ -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) > $@ |