-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Codegen] Remove PreferedSymbol, generate enum by handle (#40)
* remove PreferedSymbol, generate enum by handle * add test target
- Loading branch information
1 parent
98c4cbf
commit 8638b40
Showing
11 changed files
with
181 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
GOBASE := $(shell pwd) | ||
GOBIN := $(GOBASE)/bin | ||
|
||
test: test-networks | ||
go test -v ./... | ||
|
||
test-networks: | ||
cd ./networks; \ | ||
go test -v ./...; \ | ||
|
||
generate-coins: | ||
@echo " > Generating coin file" | ||
GOBIN=$(GOBIN) go run -tags=coins coin/gen.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.