From 47827b2fe90addec7bf22ebedf1f05f23a134012 Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Thu, 21 May 2015 18:23:23 -0500 Subject: [PATCH 1/2] Updated travis make target. --- resources/make/common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/make/common.mk b/resources/make/common.mk index cbd99d3..9a67212 100644 --- a/resources/make/common.mk +++ b/resources/make/common.mk @@ -110,7 +110,7 @@ check-all: get-deps clean-eunit compile-no-deps check: check-unit-with-deps -check-travis: $(LFETOOL) check +check-travis: $(BIN_DIR)/lfetool check push-all: @echo "Pusing code to github ..." From 1a37e663e530889a07fa21b708ffa06fc10d95b0 Mon Sep 17 00:00:00 2001 From: Duncan McGreggor Date: Thu, 21 May 2015 18:27:34 -0500 Subject: [PATCH 2/2] Added another target for Jenkins' use. --- resources/make/common.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/make/common.mk b/resources/make/common.mk index 9a67212..e609701 100644 --- a/resources/make/common.mk +++ b/resources/make/common.mk @@ -28,6 +28,9 @@ endif $(BIN_DIR): mkdir -p $(BIN_DIR) +$(BIN_DIR)/lfetool: $(BIN_DIR) + @make get-lfetool + get-lfetool: $(BIN_DIR) curl -L -o ./lfetool https://raw.github.com/lfe/lfetool/dev-v1/lfetool && \ chmod 755 ./lfetool && \