aboutsummaryrefslogtreecommitdiffstats
path: root/rebuild.sh
diff options
context:
space:
mode:
Diffstat (limited to 'rebuild.sh')
-rwxr-xr-xrebuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/rebuild.sh b/rebuild.sh
index 21c8b65..6a7e829 100755
--- a/rebuild.sh
+++ b/rebuild.sh
@@ -8,7 +8,7 @@ for i in src/*;do
mkdir -p $iout
for j in $i/*.c;do
jout=$(basename $j | cut -d. -f1)
- gcc -o $iout/$jout $j
+ gcc -Wall -o $iout/$jout $j
done
cp $iout/* /usr/local/$iout/
done