sinfar-haks/hak/HakBuilder.cmd
AlastorStrixEfuartus edfc5e33f4 small adjustment
2025-10-07 10:35:03 +02:00

18 lines
399 B
Batchfile

@echo off
REM ============================
REM Build .hak files from folders
REM ============================
REM Path to nwhak.exe (adjust if needed)
REM set NWHak="nwhak.exe"
REM Loop through all subfolders in current directory
for /d %%F in (*) do (
echo Building %%F_v30.hak from folder %%F ...
nwhak.exe "%%F_v30.hak" "%%F"
)
echo.
echo Done! All .hak files have been created.
pause