17 lines
692 B
Bash
Executable file
17 lines
692 B
Bash
Executable file
MYPATH=$(pwd)
|
|
CUR_MAKEFILE=$MYPATH/Makefile
|
|
if [ -e $CUR_MAKEFILE ]
|
|
then
|
|
echo "regenerate Makefile"
|
|
sed "`grep -n 'SRC_BASE =' $CUR_MAKEFILE | sed 's/:.*//'`, \$d" $CUR_MAKEFILE > NEWMAKEFILE
|
|
grep 'SRC_BASE =' $CUR_MAKEFILE >> NEWMAKEFILE
|
|
expr "$(find ./srcs | grep "\.c" | sed -e 's/srcs\///' -e 's/\.\///' -e 's/$/\\/')" : "\(.*\).$" >> NEWMAKEFILE
|
|
echo "" >> NEWMAKEFILE
|
|
grep 'SRCS =' $CUR_MAKEFILE >> NEWMAKEFILE
|
|
sed "1, `grep -n 'SRCS =' $CUR_MAKEFILE | sed 's/:.*//'`d" $CUR_MAKEFILE >> NEWMAKEFILE
|
|
mv $CUR_MAKEFILE ~/Documents/.OLDMakefile
|
|
mv NEWMAKEFILE $CUR_MAKEFILE
|
|
echo "Makefile done (copy still alive in ~/Documents/.OLDMakefile)"
|
|
else
|
|
echo "Makefile not found."
|
|
fi
|