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:
parent
83a4c9f70f
commit
fb3ed0f976
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue