adept/Makefile
Gregory Ballantine 6d1a24cefb
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Added some basic unit tests for some of the utility functions
2022-09-01 14:25:02 -04:00

18 lines
204 B
Makefile

BINARY_NAME=adept
all: build test
build:
go build -o ${BINARY_NAME} adept.go
test:
go test -v ./...
run:
go build -o ${BINARY_NAME} adept.go
./${BINARY_NAME}
clean:
go clean
rm ${BINARY_NAME}