From: Martin Mares Date: Tue, 28 Mar 2006 10:40:04 +0000 (+0000) Subject: Added `cc'. X-Git-Tag: python-dummy-working~426 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=4cf53d39eab6846ee8649c994fc55e23c4854f9b;p=moe.git Added `cc'. --- diff --git a/config b/config index 138bb8b..3b37fce 100644 --- a/config +++ b/config @@ -31,7 +31,7 @@ CT_USER_LIST=userlist ## Compiler settings: # Known source file extensions -EXTENSIONS="c C cpp p pas" +EXTENSIONS="c cc C cpp p pas" # Extra compiler flags for C (null, but can be overriden) EXTRA_CFLAGS= @@ -43,6 +43,7 @@ EXTRA_PFLAGS= COMP_c='/usr/bin/gcc -O2 -g -o $EXE $EXTRA_CFLAGS $SRC' COMP_C='/usr/bin/g++ -O2 -g -o $EXE $EXTRA_CFLAGS $SRC' COMP_cpp="$COMP_C" +COMP_cc="$COMP_C" COMP_p='/usr/bin/fpc -Ci -Cr -g -O2 -So -Sg -o$EXE $EXTRA_PFLAGS $SRC' COMP_pas="$COMP_p"