mirror of
https://github.com/cjdenio/jia.git
synced 2024-11-21 23:23:39 +00:00
12 lines
118 B
Makefile
12 lines
118 B
Makefile
MAIN=./cmd/jia.go
|
|
|
|
all: run
|
|
|
|
build:
|
|
go build -o ./bin/jia ${MAIN}
|
|
|
|
clean:
|
|
rm -rfv ./bin
|
|
|
|
run:
|
|
go run -race ${MAIN}
|