File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,19 @@ mkdir -p ${CLEAN_DIR}/{bin,tf/bin}
1616mkdir -p ${CLEAN_DEBUG_DIR} /{bin,tf/bin}
1717cp -rf copy/* ${CLEAN_DIR}
1818
19- EXE_EXT=_linux
2019DLL_EXT=.so
2120DBG_EXT=.dbg
2221MAP_EXT=.map
2322
2423declare -a EXECUTABLES=(
25- {hl2,srcds}
24+ {hl2,srcds}_linux
25+ bin/vtf2tga_linux32
26+ bin/vpk_linux32
2627 )
2728
2829declare -a DLLS=(
2930 bin/bsppack
31+ bin/bugreporter_public
3032 bin/datacache
3133 bin/engine
3234 bin/filesystem_stdio
@@ -41,21 +43,23 @@ declare -a DLLS=(
4143 bin/scenefilecache
4244 bin/ServerBrowser
4345 bin/shaderapidx9
46+ bin/shaderapiempty
4447 bin/soundemittersystem
4548 bin/sourcevr
4649 bin/stdshader_dx9
4750 bin/studiorender
4851 bin/vgui2
4952 bin/vguimatsurface
53+ bin/vtex_dll
5054 tf/bin/client
5155 tf/bin/server
5256 )
5357
5458for F in " ${EXECUTABLES[@]} " ; do
5559 # This will fail at least once, since either hl2 or srcds exists, but not both.
56- cp -f ${DEV_DIR} /${F} $EXE_EXT ${CLEAN_DIR} /${F} $EXE_EXT || true
57- cp -f ${DEV_DIR} /${F} $EXE_EXT$ MAP_EXT ${CLEAN_DEBUG_DIR} /${F} $EXE_EXT $MAP_EXT || true
58- cp -f ${DEV_DIR} /${F} $EXE_EXT$ DBG_EXT ${CLEAN_DEBUG_DIR} /${F} $EXE_EXT $DBG_EXT || true
60+ cp -f ${DEV_DIR} /${F} ${CLEAN_DIR} /${F} || true
61+ cp -f ${DEV_DIR} /${F} $MAP_EXT ${CLEAN_DEBUG_DIR} /${F} $MAP_EXT || true
62+ cp -f ${DEV_DIR} /${F} $DBG_EXT ${CLEAN_DEBUG_DIR} /${F} $DBG_EXT || true
5963done
6064
6165for F in " ${DLLS[@]} " ; do
You can’t perform that action at this time.
0 commit comments