This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-soccer/source/Code/genmakefile.sh

12 lines
215 B
Bash
Raw Normal View History

#!/bin/bash
cat makefile | grep -v "^SRC +=" > makefile.new
for row in $(find | grep .c$); do
if [ "$row" != "./main.c" ]; then
echo "SRC += $row" >> makefile.new
fi
done
rm makefile
mv makefile.new makefile