summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-08-24 15:46:22 -0400
committerBrian Cully <bjc@spork.org>2025-08-24 15:46:22 -0400
commit411f2735bffc42d11a3b1b3447bbb1603e48a3eb (patch)
tree9444596251baf8625522190a721d422adb69ce2e /Makefile
parent0efb15a9eb706896cdabb9ca5d2b0c295c2dffcf (diff)
downloadautomathon-411f2735bffc42d11a3b1b3447bbb1603e48a3eb.tar.gz
automathon-411f2735bffc42d11a3b1b3447bbb1603e48a3eb.zip
move html stuff into ‘site’
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f37f0ac..08d33b2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
# the --target is currently necessary or firefox will return
# "disallowed mime type" -bjc 7-aug-2025
build:
- wasm-pack build --target web
+ wasm-pack build --target web --out-dir site/wasm
serve: build
- python -m http.server 8118
+ (cd site && python -m http.server 8118)