7 lines
76 B
Makefile
7 lines
76 B
Makefile
all: build
|
|
build:V:
|
|
go build -o ./exe/ ./cmd/...
|
|
|
|
clean:V:
|
|
rm -f ./exe/*
|
|
|