diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7f52139 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +start: + @nix-shell --command "mux local" + +stop: + @pkill webfsd + @tmux kill-session -t glycemie + +.PHONY: test +test: + @pulp test + +build: + @pulp build --to public/main.js + +watch: + @pulp --watch --before clear build --to public/main.js |