Files
dcf/Makefile

15 lines
173 B
Makefile
Raw Permalink Normal View History

2024-05-12 09:37:34 -07:00
default: test
test:
go test -v ./...
run: build
2024-05-13 09:42:59 -07:00
DEBUG=1 ./dcfinfo
2024-05-12 09:37:34 -07:00
build:
2024-05-13 09:42:59 -07:00
go env -w CGO_ENABLED="0"
2024-05-12 09:37:34 -07:00
cd cmd/dcfinfo && go build -o ../../dcfinfo
2024-05-13 09:42:59 -07:00
clean:
rm -f dcfinfo