From fba1499672bb2aa80c9fa2fca591a2b3c6805cdb Mon Sep 17 00:00:00 2001 From: Maykel Arias Torres Date: Fri, 2 Aug 2019 23:18:01 -0400 Subject: [PATCH] [Makefile] refs #28 Correcting comment and declare new phony `clean-skyhwd` and `test-skyhwd` --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1815a59c8..407547ad7 100644 --- a/Makefile +++ b/Makefile @@ -136,6 +136,8 @@ test-libc: build-libc ## Run tests for libskycoin C client library test-skyapi: build-skyapi ## Run test for skyapi(libcurl based) library +test-skyhwd: build-skyhwd ## Run test for Hardware Wallet Daemon(libcurl based) library + test: test-libc test-skyapi test-skyhwd ## Run all test for libskycoin docs-skyapi: ## Generate SkyApi (libcurl) documentation @@ -229,7 +231,7 @@ clean-libc: ## Clean files generated by libc clean-skyapi: ## Clean files generated by skyapi rm -rfv $(BUILDLIBSKYAPI_DIR) -clean-skyapi: ## Clean files generated by skyapi +clean-skyhwd: ## Clean files generated by skyhwd rm -rfv $(BUILDLIBSKYHWD_DIR) clean: clean-libc clean-skyapi clean-skyhwd ## Clean all files generated by libraries