aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 9e8ad53403d78b8182bf06892b1f985bcc0bffd4 (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 && npm install && npx @tailwindcss/cli -mo main.css && elm make src/Main.elm --output main.js

build:
	cargo build -r

.PHONY: front build web cli