aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 4e2b0cb188be023981af2f682fd39fac113b45e5 (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

all: build/test_msgnet build/test_p2p_stress


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/ -j4

build:
	mkdir -p 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_p2p_stress: salticidae/libsalticidae.so test_p2p_stress/main.go
	make -C salticidae/
	go build -o $@ github.com/Determinant/salticidae-go/test_p2p_stress

clean:
	rm -rf build/
	cd salticidae/; make clean
	rm salticidae/CMakeCache.txt