Replaced GNUmakerules.sh with GNUmakerules.pl because Debian now uses a
/bin/sh which doesn't understand echo -e.
This commit is contained in:
parent
34cd011527
commit
0d6d25b899
|
@ -1,5 +1,9 @@
|
||||||
# $Id: GNUmakefile,v 1.6 2011-01-30 19:33:28 hjp Exp $
|
# $Id: GNUmakefile,v 1.7 2011-01-30 19:41:15 hjp Exp $
|
||||||
# $Log: GNUmakefile,v $
|
# $Log: GNUmakefile,v $
|
||||||
|
# Revision 1.7 2011-01-30 19:41:15 hjp
|
||||||
|
# Replaced GNUmakerules.sh with GNUmakerules.pl because Debian now uses a
|
||||||
|
# /bin/sh which doesn't understand echo -e.
|
||||||
|
#
|
||||||
# Revision 1.6 2011-01-30 19:33:28 hjp
|
# Revision 1.6 2011-01-30 19:33:28 hjp
|
||||||
# removed duplicate rules
|
# removed duplicate rules
|
||||||
#
|
#
|
||||||
|
@ -31,8 +35,8 @@ install: $(BINDIR)/errno
|
||||||
|
|
||||||
GNUmakevars: GNUmakevars.sh
|
GNUmakevars: GNUmakevars.sh
|
||||||
sh ./$^ > $@
|
sh ./$^ > $@
|
||||||
GNUmakerules: GNUmakerules.sh
|
GNUmakerules: GNUmakerules.pl
|
||||||
sh ./$^ > $@
|
perl ./$^ > $@
|
||||||
|
|
||||||
include GNUmakerules
|
include GNUmakerules
|
||||||
-include *.d
|
-include *.d
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/perl
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
print "\$(BINDIR)/%: %\n";
|
||||||
|
print "\tcp \$^ \$@\n";
|
||||||
|
print "\$(MAN1DIR)/%: %\n";
|
||||||
|
print "\tcp \$^ \$@\n";
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
echo "\$(BINDIR)/%: %"
|
|
||||||
echo -e "\tcp \$^ \$@"
|
|
||||||
echo "\$(MAN1DIR)/%: %"
|
|
||||||
echo -e "\tcp \$^ \$@"
|
|
Loading…
Reference in New Issue