diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-10-16 13:33:45 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-10-16 13:33:45 +0200 |
commit | b60120161a69e689a39d89c608265faa52785285 (patch) | |
tree | e6930249ddaef4ca51503b22f6bbfbb40163836b /libsi/Makefile | |
parent | 7f3a7067267ca73fd6caee1a7d3048adb30f93d7 (diff) | |
download | vdr-b60120161a69e689a39d89c608265faa52785285.tar.gz vdr-b60120161a69e689a39d89c608265faa52785285.tar.bz2 |
Fixed libsi/Makefile to use the compiler defined in for generating file dependencies
Diffstat (limited to 'libsi/Makefile')
-rw-r--r-- | libsi/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsi/Makefile b/libsi/Makefile index 613fbeee..2d8713b3 100644 --- a/libsi/Makefile +++ b/libsi/Makefile @@ -1,7 +1,7 @@ # # Makefile for a libsi # -# $Id: Makefile 1.2 2003/12/13 10:41:39 kls Exp $ +# $Id: Makefile 1.3 2004/10/16 13:31:50 kls Exp $ ### The C++ compiler and options: @@ -30,7 +30,7 @@ OBJS = util.o si.o section.o descriptor.o # Dependencies: -MAKEDEP = g++ -MM -MG +MAKEDEP = $(CXX) -MM -MG DEPFILE = .dependencies $(DEPFILE): Makefile @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ |