diff options
Diffstat (limited to 'compile')
-rwxr-xr-x | compile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -28,9 +28,12 @@ fi objs= cc() { objs="$objs .build/${1%%.c}.o" + _mn=" -DMODULE_NAME=${1%%.c}" + # ugly annoying special case + if [ "$_mn" = " -DMODULE_NAME=con_" ]; then _mn=" -DMODULE_NAME=con" + elif [ "$_mn" = "-DMODULE_NAME=sst" ]; then _mn=; fi $CC -m32 -c -flto -fpic $cflags $warnings -I.build/include \ - -D_FILE_OFFSET_BITS=64 -DFILE_BASENAME="${1%%.c}" \ - -o ".build/${1%%.c}.o" "src/$1" + -D_FILE_OFFSET_BITS=64$_mn -o ".build/${1%%.c}.o" "src/$1" } ld() { @@ -44,6 +47,7 @@ src="\ demorec.c engineapi.c ent.c + errmsg.c extmalloc.c fixes.c fov.c |