14 lines
179 B
Makefile
14 lines
179 B
Makefile
|
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
|