summaryrefslogtreecommitdiff
path: root/make.bat
diff options
context:
space:
mode:
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat7
1 files changed, 6 insertions, 1 deletions
diff --git a/make.bat b/make.bat
index 01cb1ddc..2ab11bc3 100644
--- a/make.bat
+++ b/make.bat
@@ -1,5 +1,10 @@
git submodule update --init --recursive
cd 3rd\luamake
call compile\install.bat
+call compile\build.bat
cd ..\..
-call 3rd\luamake\luamake.exe rebuild
+IF "%~1"=="" (
+ call 3rd\luamake\luamake.exe rebuild
+) ELSE (
+ call 3rd\luamake\luamake.exe rebuild --platform %1
+)