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

serve: build
	target/release/web

.PHONY: build serve