From fa3067a16f8ba06ee756eb2b2293be4cb728681d Mon Sep 17 00:00:00 2001 From: brian cully Date: Fri, 26 Dec 2025 12:04:14 -0500 Subject: add bouncing particles --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5d17ff0 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +BUILDDIR=site +HOST=coleridge:public_html/automathon + +# the --target is currently necessary or firefox will return +# "disallowed mime type" -bjc 7-aug-2025 +build: + wasm-pack build --target web --out-dir $(BUILDDIR)/wasm + +serve: build + (cd $(BUILDDIR) && python -m http.server 8118) + +deploy: build + rsync -avz --delete --exclude='*~' "$(BUILDDIR)"/ "$(HOST)" -- cgit v1.3