From 6e9095097e319ba03391bafff03b9e9ec5028fbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Mon, 14 Aug 2023 19:27:44 +0200 Subject: [PATCH] fixes --- MAKE.bat | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/MAKE.bat b/MAKE.bat index e4c034e..efa1038 100644 --- a/MAKE.bat +++ b/MAKE.bat @@ -500,6 +500,8 @@ if "%1"=="fwk" ( tools\fwkren.exe %%f from ) + tools\fwkren.exe tools\cook.ini from + echo All done. endlocal exit /b @@ -528,12 +530,12 @@ if "%1"=="back" ( echo Skipping %%f ) ) - for %%f in (demos\*) do ( + for %%f in (demos\*.c) do ( set "filename=%%~nxf" echo Processing: %%f tools\fwkren.exe %%f to ) - for %%f in (tools\*) do ( + for %%f in (tools\*.c) do ( set "filename=%%~nxf" echo Processing: %%f tools\fwkren.exe %%f to @@ -544,6 +546,8 @@ if "%1"=="back" ( tools\fwkren.exe %%f to ) + tools\fwkren.exe tools\cook.ini to + echo All done. endlocal exit /b