C compilation script: tell GCC to use C99 mode.

This commit is contained in:
Adrien Guatto 2010-06-28 15:18:16 +02:00
parent ff07d77667
commit 04fcf5a826

View file

@ -24,4 +24,4 @@ if [ $compile -eq 1 ]; then
fi fi
# Compile it with GCC # Compile it with GCC
cc $REP/*.c -o `basename $F .ept` || exit 1 cc -std=c99 $REP/*.c -o `basename $F .ept` || exit 1