mirror of
https://github.com/anope/anope.git
synced 2026-06-24 18:26:37 +02:00
55bf4dbcab
git-svn-id: svn://svn.anope.org/anope/trunk@1 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1 5417fbe8-f217-4b02-8779-1006273d7864
22 lines
426 B
Bash
Executable File
22 lines
426 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo -n "SRCS=" > ./Makefile.inc
|
|
FIRST=1
|
|
for oldfile in *.c
|
|
do
|
|
if [ "$FIRST" = 1 ] ; then
|
|
echo -n " "$oldfile >> ./Makefile.inc
|
|
else
|
|
echo "\\" >> ./Makefile.inc
|
|
echo -n " " $oldfile >> ./Makefile.inc
|
|
fi
|
|
FIRST=0
|
|
done
|
|
echo "" >> ./Makefile.inc
|
|
|
|
cat <<EOT
|
|
All done! Now run "make" (or possibly "gmake") to compile your modules.
|
|
See the INSTALL, README and FAQ files if you have any problems.
|
|
EOT
|
|
exit 0
|