blob: a7a5d475645d8af6c11cf1fed72feaf597e64aed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.PHONY: all clean run_make
all: build/test_msgnet build/test_p2p_stress
run_make:
make -C salticidae/
salticidae/libsalticidae.so:
cd salticidae/; cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED=ON -DSALTICIDAE_DEBUG_LOG=OFF -DSALTICIDAE_CBINDINGS=ON -DBUILD_TEST=OFF ./
make -C salticidae/
build:
mkdir -p build
build/test_msgnet: salticidae/libsalticidae.so test_msgnet/main.go run_make
go build -o $@ github.com/Determinant/salticidae-go/test_msgnet
build/test_p2p_stress: salticidae/libsalticidae.so test_p2p_stress/main.go run_make
go build -o $@ github.com/Determinant/salticidae-go/test_p2p_stress
clean:
rm -r build/
cd salticidae/; make clean
rm salticidae/CMakeCache.txt
|