GNUmakerules, GNUmakevars

This commit is contained in:
hjp 2016-07-05 19:57:27 +00:00
parent e78b9530ef
commit 89e5b8a3ff
3 changed files with 21 additions and 1 deletions

View File

@ -7,7 +7,7 @@ clean:
rm -f *.bak *.o core ieeefloat
distclean: clean
rm -f *.d
rm -f *.d GNUmakerules GNUmakevars
ieeefloat: ieeefloat.o

5
ieeefloat/GNUmakerules.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
echo "\$(BINDIR)/%: %"
echo -e "\tcp \$^ \$@"
echo "\$(MAN1DIR)/%: %"
echo -e "\tcp \$^ \$@"

15
ieeefloat/GNUmakevars.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
prefix=${prefix:-/usr/local}
echo "BINDIR=$prefix/bin"
for i in "$prefix/share/man/man1" "$prefix/man/man1"
do
if [ -d "$i" -a -w "$i" ]
then
echo "MAN1DIR=$i"
break;
fi
done
echo
echo "all:"