Make it possible to defer start, boost web memory.

This commit is contained in:
Brad Nelson
2023-02-20 18:11:45 -08:00
parent 5a40463464
commit d2c62a35b9
3 changed files with 48 additions and 7 deletions

View File

@ -346,7 +346,7 @@ $(RES)/ueforth_res64.res: windows/ueforth.rc $(RES)/eforth.ico
# ---- WEB ----
web: web_target web_tests
web_target: $(WEB)/terminal.html $(WEB)/ueforth.js
web_target: $(WEB)/terminal.html $(WEB)/lazy_terminal.html $(WEB)/ueforth.js
$(WEB):
mkdir -p $(WEB)
@ -354,6 +354,9 @@ $(WEB):
$(WEB)/terminal.html: web/terminal.html | $(WEB)
cp $< $@
$(WEB)/lazy_terminal.html: web/lazy_terminal.html | $(WEB)
cp $< $@
$(WEB)/ueforth.js: \
web/fuse_web.js \
web/web.template.js \