Files
godb/makefile
T

27 lines
351 B
Makefile
Raw Normal View History

BINARY_NAME=godb
run:
@go run cmd/godb/main.go
build:
@go build -o tmp/${BINARY_NAME} cmd/godb/main.go
start:
@./tmp/${BINARY_NAME}
2026-07-24 23:59:41 +05:30
test-unit:
@go test ./internals/... -v
test-inte:
@go test ./tests/... -v
test: build test-unit test-inte
clean:
@go clean
@rm -rf ${BINARY_NAME}
2026-07-24 23:59:41 +05:30
reset: clean build test clean
2026-07-24 23:59:41 +05:30
.PHONY: clean build test