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

Makefile: add test target.

This commit is contained in:
Henrik Hautakoski 2023-01-06 17:18:25 +01:00
parent 83a4c9f70f
commit fb3ed0f976

View file

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