1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00
thalos/Makefile

14 lines
157 B
Makefile

GO=go
PROGRAM=build/eosio-ship-trace-reader
.PHONY: $(PROGRAM) test
$(PROGRAM) :
$(GO) build -o $@
test:
$(GO) test -v ./...
clean :
$(RM) -fr build