8 lines
72 B
Makefile
8 lines
72 B
Makefile
all: build
|
|
|
|
build:V:
|
|
go build -o exe/ ./cmd/...
|
|
|
|
clean:
|
|
rm -rf exe/*
|
|
|