show source of bits of makefiles (trunk only)

Mark the generated makefiles as generated and mark the source of each section
to aid debugging.
This commit is contained in:
keni
2008-02-21 01:16:41 +00:00
parent ac63f2bb6f
commit a17ea1b3ac

View File

@@ -9,4 +9,14 @@
# $2 install path
# $3 hints file
cat $3 $1 > $2
echo "#" > $2
echo "# This file is generated automatically. Do not edit." >> $2
echo "# Your changes will be lost. See sys/unix/NewInstall.unx." >> $2
echo "###" >> $2
echo "### Start $3" >> $2
echo "###" >> $2
cat $3 >> $2
echo "### end of file" >> $2
echo "### Start $1" >> $2
cat $1 >> $2
echo "### end of file" >> $2