From 1c7a93144ae794b0f81039c38cc4a7a969230925 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Sun, 26 Apr 2026 22:23:19 -0400 Subject: Initial commit --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7e63f45 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.PHONY: build repl web-build web-repl + +build: + @clojure -Scp '$(CLASSPATH):src:.' -M -m scripts.repl + +repl: + @clojure -Scp '$(CLASSPATH):src:.' -M -m scripts.repl + +web-build: + mkdir -p build/web + @clojure -Scp '$(CLASSPATH):src' -M -m cljs.main --optimizations advanced --output-to build/web/app.js --compile stem.web.core + +web-repl: + @clojure -Scp '$(CLASSPATH):src:.' -M -m scripts.web-repl -- cgit v1.2.3