14 lines
177 B
Makefile
14 lines
177 B
Makefile
target := "cmd/music-agregator/main.go"
|
|
|
|
proto:
|
|
buf generate
|
|
|
|
build: proto
|
|
go build {{target}}
|
|
|
|
tidy:
|
|
go mod tidy
|
|
|
|
run *FLAGS: proto
|
|
go run {{target}} {{FLAGS}}
|