WindowsXP/tools/make_publish_spec.cmd
2025-04-27 07:49:33 -04:00

20 lines
248 B
Batchfile

@echo off
setlocal
set ROOT=%1
set OBJ=%2
shift
shift
set LIST=
for %%i in (%*) do (
if "%%i" neq "%ROOT%" (
if "%%i" neq "%OBJ%" (
set LIST=!LIST! {%OBJ%\%%i=%ROOT%\%%i}
)
)
)
echo %LIST%