Handle multiple script tags.

This commit is contained in:
Brad Nelson
2023-02-24 21:04:26 -08:00
parent da324bdf70
commit 244f16b898
5 changed files with 109 additions and 12 deletions

View File

@ -349,7 +349,9 @@ web: web_target web_tests
web_target: \
$(WEB)/terminal.html \
$(WEB)/lazy_terminal.html \
$(WEB)/script_lite_test.html \
$(WEB)/script_test.html \
$(WEB)/script_test.fs \
$(WEB)/ueforth.js
$(WEB):
@ -361,9 +363,15 @@ $(WEB)/terminal.html: web/terminal.html | $(WEB)
$(WEB)/lazy_terminal.html: web/lazy_terminal.html | $(WEB)
cp $< $@
$(WEB)/script_lite_test.html: web/script_lite_test.html | $(WEB)
cp $< $@
$(WEB)/script_test.html: web/script_test.html | $(WEB)
cp $< $@
$(WEB)/script_test.fs: web/script_test.fs | $(WEB)
cp $< $@
$(WEB)/ueforth.js: \
web/fuse_web.js \
web/web.template.js \