Files
remotesupport/Makefile
Jaroslav Drzik 31983b6803 Add bin dir
2021-12-10 11:28:25 +01:00

17 lines
246 B
Makefile

BINARY_NAME=check_status
GO_PRG=check_status.go
BIN_DIR=./bin
GO=/usr/local/go/bin/go
all: build test
build:
${GO} build -o ${BIN_DIR}/${BINARY_NAME} ${GO_PRG}
test:
${GO} test -v ${GO_PRG}
clean:
${GO} clean
rm ${BIN_DIR}/${BINARY_NAME}