happy/Makefile

14 lines
206 B
Makefile
Raw Normal View History

2019-10-18 12:46:20 +00:00
build: *.go frontend
go build
frontend:
2019-10-18 12:48:39 +00:00
cd frontend && yarn build --mode development
2019-10-18 12:46:20 +00:00
frontend-watch:
cd frontend && yarn build --watch
2019-10-28 11:56:13 +00:00
run: *.go
./happy -develop
2019-10-18 12:46:20 +00:00
.PHONY: run frontend frontend-watch