File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
Expand file tree Collapse file tree 1 file changed +9
-6
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,22 +43,23 @@ declare -a DLLS=(
4143 bin/scenefilecache
4244 bin/ServerBrowser
4345 bin/shaderapidx9
46+ bin/shaderapiempty
4447 bin/soundemittersystem
4548 bin/sourcevr
46- bin/stdshader_dbg
4749 bin/stdshader_dx9
4850 bin/studiorender
4951 bin/vgui2
5052 bin/vguimatsurface
53+ bin/vtex_dll
5154 tf/bin/client
5255 tf/bin/server
5356 )
5457
5558for F in " ${EXECUTABLES[@]} " ; do
5659 # This will fail at least once, since either hl2 or srcds exists, but not both.
57- cp -f ${DEV_DIR} /${F} $EXE_EXT ${CLEAN_DIR} /${F} $EXE_EXT || true
58- cp -f ${DEV_DIR} /${F} $EXE_EXT$ MAP_EXT ${CLEAN_DEBUG_DIR} /${F} $EXE_EXT $MAP_EXT || true
59- 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
6063done
6164
6265for F in " ${DLLS[@]} " ; do
You can’t perform that action at this time.
0 commit comments