aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ad7cba40e7b7fe9ec57e1ebc11e74446e52b103a (plain) (blame)
1
2
3
4
5
6
7
8
build:
	cd front && elm make src/Main.elm --output main.js
	cargo build -r

serve: build
	target/release/web

.PHONY: build serve