summaryrefslogtreecommitdiffhomepage
path: root/compile
diff options
context:
space:
mode:
Diffstat (limited to 'compile')
-rwxr-xr-xcompile12
1 files changed, 6 insertions, 6 deletions
diff --git a/compile b/compile
index d9ab4f6..17a1ba4 100755
--- a/compile
+++ b/compile
@@ -89,15 +89,15 @@ if [ "$dbg" = 1 ]; then src="$src \
fi
$HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
- -o .build/codegen src/build/codegen.c src/build/cmeta.c
+ -o .build/codegen src/build/codegen.c src/build/cmeta.c src/os.c
$HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
- -o .build/mkgamedata src/build/mkgamedata.c src/kv.c
+ -o .build/mkgamedata src/build/mkgamedata.c src/os.c
$HOSTCC -O2 -fuse-ld=lld $warnings -D_FILE_OFFSET_BITS=64 -include stdbool.h \
- -o .build/mkentprops src/build/mkentprops.c src/kv.c
+ -o .build/mkentprops src/build/mkentprops.c src/os.c
.build/codegen `for s in $src; do echo "src/$s"; done`
-.build/mkgamedata gamedata/engine.kv gamedata/gamelib.kv gamedata/inputsystem.kv \
-gamedata/matchmaking.kv gamedata/vgui2.kv gamedata/vguimatsurface.kv
-.build/mkentprops gamedata/entprops.kv
+.build/mkgamedata gamedata/engine.txt gamedata/gamelib.txt gamedata/inputsystem.txt \
+gamedata/matchmaking.txt gamedata/vgui2.txt gamedata/vguimatsurface.txt
+.build/mkentprops gamedata/entprops.txt
for s in $src; do cc "$s"; done
$CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libtier0.so src/stubs/tier0.c
$CC -shared -fpic -fuse-ld=lld -O0 -w -o .build/libvstdlib.so src/stubs/vstdlib.c