diff options
author | Determinant <[email protected]> | 2019-06-22 01:45:37 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-06-22 01:45:37 -0400 |
commit | 66914cd88bd822d3399e754f43a42906c043f1fd (patch) | |
tree | 77751cf4f2b106cb8fe2dd66f546502a7a099217 /Makefile | |
parent | 988748a02d39228017e36f7a5c3415b19b31657d (diff) |
support TLS; change some API
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,6 @@ .PHONY: all clean -all: build/test_msgnet build/test_p2p_stress +all: build/test_msgnet build/test_p2p_stress build/test_msgnet_tls salticidae/libsalticidae.so: @@ -13,6 +13,9 @@ build: build/test_msgnet: salticidae/libsalticidae.so test_msgnet/main.go make -C salticidae/ go build -o $@ github.com/Determinant/salticidae-go/test_msgnet +build/test_msgnet_tls: salticidae/libsalticidae.so test_msgnet_tls/main.go + make -C salticidae/ + go build -o $@ github.com/Determinant/salticidae-go/test_msgnet_tls build/test_p2p_stress: salticidae/libsalticidae.so test_p2p_stress/main.go make -C salticidae/ go build -o $@ github.com/Determinant/salticidae-go/test_p2p_stress |