Updated Makefile to change 'build' command to 'compile'
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-02-11 15:33:08 -05:00
parent b52a1ef08e
commit fa4e51a0e8
2 changed files with 61 additions and 30 deletions

View File

@ -2,7 +2,7 @@ BINARY_NAME=adept
all: build test
build:
compile:
go build -o ${BINARY_NAME} adept.go
test:
@ -31,7 +31,8 @@ uninstall:
rm /usr/bin/${BINARY_NAME}
rm /etc/systemd/system/${BINARY_NAME}.service
rm -rf /etc/${BINARY_NAME}
clean:
go clean
rm ${BINARY_NAME}
.PHONY: all test clean