Refactor Makefile and remove old task (#107)

This commit is contained in:
Oskar Thorén 2020-08-26 17:02:56 +08:00 committed by GitHub
parent c3f57c79f5
commit 28f21f0920
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 7 deletions

View File

@ -88,9 +88,9 @@ protocol2:
echo -e $(BUILD_MSG) "build/$@" && \
$(ENV_SCRIPT) nim protocol2 $(NIM_PARAMS) waku.nims
wakutest2:
test2:
echo -e $(BUILD_MSG) "build/$@" && \
$(ENV_SCRIPT) nim wakutest2 $(NIM_PARAMS) waku.nims
$(ENV_SCRIPT) nim test2 $(NIM_PARAMS) waku.nims
wakuexample2:
echo -e $(BUILD_MSG) "build/$@" && \

View File

@ -53,11 +53,6 @@ task wakusim, "Build Waku simulation tools":
task protocol2, "Build the experimental Waku protocol":
buildBinary "waku_protocol2", "waku/protocol/v2/", "-d:chronicles_log_level=TRACE"
task wakutest2, "Build Experimental Waku tests":
let name = "v2/test_waku"
buildBinary name, "tests/", "-d:chronicles_log_level=DEBUG"
exec "build/" & name
task wakunode2, "Build Experimental Waku cli":
buildBinary "wakunode2", "waku/node/v2/", "-d:chronicles_log_level=TRACE"