12 lines
164 B
Makefile
12 lines
164 B
Makefile
debug:
|
|
go run -tags "debug" ./...
|
|
|
|
all: clean build
|
|
|
|
clean:
|
|
echo "* Cleaning the output directory"
|
|
rm -rf build
|
|
|
|
build:
|
|
echo "* Building the binary"
|
|
./build.sh
|