windows-nt/Source/XPSP1/NT/tools/make_publish_spec.cmd

20 lines
229 B
Batchfile
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
@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%