happy/Makefile

14 lines
179 B
Makefile
Raw Normal View History

2019-10-18 12:46:20 +00:00
build: *.go frontend
go build
frontend:
cd frontend && yarn build
frontend-watch:
cd frontend && yarn build --watch
run: build
./happy
.PHONY: run frontend frontend-watch