SDK/Tools/convert.bat

16 lines
300 B
Batchfile
Raw Permalink Normal View History

@echo off
2020-06-28 21:07:46 +02:00
if #%1#==## (
echo Usage: %~n0 [source-file.exe [pet-options]]
goto exit
)
"%~dp0..\Pet" -nologo -strip -trunc -dropsect .idata,.rsrc -rebase 0 -osver 0.7 -log brief -into %*
if errorlevel 1 goto exit
2020-06-28 21:07:46 +02:00
"%~dp0..\exe2kos" %1
if errorlevel 1 goto exit
2020-06-28 21:07:46 +02:00
"%~dp0..\kpack" "%~dp1%~n1"
:exit