aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_win.bat
diff options
context:
space:
mode:
authorCalvin Rose <calsrose@gmail.com>2019-10-29 18:16:32 -0500
committerCalvin Rose <calsrose@gmail.com>2019-10-29 18:16:32 -0500
commit0d16b9e1a19ab282b8cb9d33f763fac5e1a8016f (patch)
treea35774c226c56b52dcfe41203d163b35c2fb9e39 /build_win.bat
parentUpdate CHANGELOG.md (diff)
Move init.janet into cli-main in boot.janet
This makes it easier to get the CLI functionality when embedding Janet, although the main reason is the init script is now pre-compiled to bytecode when generating the boot image.
Diffstat (limited to 'build_win.bat')
-rw-r--r--build_win.bat4
1 files changed, 0 insertions, 4 deletions
diff --git a/build_win.bat b/build_win.bat
index f2ddb738..f339a7b9 100644
--- a/build_win.bat
+++ b/build_win.bat
@@ -40,14 +40,10 @@ link /nologo /out:build\xxd.exe build\xxd.obj
@if errorlevel 1 goto :BUILDFAIL
@rem Generate the embedded sources
-build\xxd.exe src\mainclient\init.janet build\init.gen.c janet_gen_init
-@if errorlevel 1 goto :BUILDFAIL
build\xxd.exe src\boot\boot.janet build\boot.gen.c janet_gen_boot
@if errorlevel 1 goto :BUILDFAIL
@rem Build the generated sources
-%JANET_COMPILE% /Fobuild\mainclient\init.gen.obj build\init.gen.c
-@if errorlevel 1 goto :BUILDFAIL
%JANET_COMPILE% /Fobuild\boot\boot.gen.obj build\boot.gen.c
@if errorlevel 1 goto :BUILDFAIL