diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-10-16 12:14:31 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-10-16 12:14:31 +0200 |
commit | 414548446b9fc0122f6ca44145cc8e32747e8ddd (patch) | |
tree | 78505cc7ede1b1e84680465c7f96e6eae95ef965 /newplugin | |
parent | a31266c9ecfcf7af9781c47a6b246c5108a2e597 (diff) | |
download | vdr-414548446b9fc0122f6ca44145cc8e32747e8ddd.tar.gz vdr-414548446b9fc0122f6ca44145cc8e32747e8ddd.tar.bz2 |
Fixed 'newplugin' to use the compiler defined in $(CXX) for generating file dependencies
Diffstat (limited to 'newplugin')
-rwxr-xr-x | newplugin | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: newplugin 1.16 2003/12/21 15:45:18 kls Exp $ +# $Id: newplugin 1.17 2004/10/16 12:12:43 kls Exp $ $PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n"; @@ -110,7 +110,7 @@ OBJS = \$(PLUGIN).o # Dependencies: -MAKEDEP = g++ -MM -MG +MAKEDEP = \$(CXX) -MM -MG DEPFILE = .dependencies \$(DEPFILE): Makefile \@\$(MAKEDEP) \$(DEFINES) \$(INCLUDES) \$(OBJS:%.o=%.c) > \$\@ |