aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1051cc72ed369f0b3d456ece5765b4ebb0a3384a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
cli: build
	target/release/cli

web: front build
	target/release/web

front:
	cd front && tailwindcss -mo main.css && elm make src/Main.elm --output main.js

build:
	cargo build -r

.PHONY: front build web cli