diff options
author | Determinant <[email protected]> | 2019-06-11 23:41:51 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-06-11 23:41:51 -0400 |
commit | 929a6d9370a0b92ef2b72eab4ecfe7ca7910be04 (patch) | |
tree | e99a6b6252f450f198bf472efb92acece5335fd2 /Makefile | |
parent | 40d830a4a3e225ea8819251c7c87a66eab0d46d0 (diff) |
change gopath to github
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -10,6 +10,11 @@ build: mkdir -p build build/test_msgnet: salticidae/libsalticidae.so test_msgnet/main.go - go build -o $@ salticidae-go/test_msgnet + go build -o $@ github.com/Determinant/salticidae-go/test_msgnet build/test_p2p_stress: salticidae/libsalticidae.so test_p2p_stress/main.go - go build -o $@ salticidae-go/test_p2p_stress + go build -o $@ github.com/Determinant/salticidae-go/test_p2p_stress + +clean: + rm -r build/ + cd salticidae/; make clean + rm salticidae/CMakeCache.txt |