mirror of
https://github.com/cjdenio/jia.git
synced 2024-11-22 07:33:39 +00:00
13 lines
118 B
Makefile
13 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}
|