To fix lf-install.sh issue
Change-Id: I9ab7ac434550cd5ed5993b20d2491677871c2cbf
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2d8c2ba
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,23 @@
+# Makefile for testing JJB jobs in a virtualenv
+
+.PHONY: test clean
+
+VENV_DIR ?= venv-jjb
+JJB_VERSION ?= 2.0.3
+JOBCONFIG_DIR ?= job-configs
+
+$(VENV_DIR):
+ @echo "Setting up virtualenv for JJB testing"
+ virtualenv $@
+ $@/bin/pip install jenkins-job-builder==$(JJB_VERSION) pipdeptree
+
+$(JOBCONFIG_DIR):
+ mkdir $@
+
+test: $(VENV_DIR) $(JOBCONFIG_DIR)
+ source $(VENV_DIR)/bin/activate ; \
+ pipdeptree ; \
+ jenkins-jobs -l DEBUG test --recursive -o $(JOBCONFIG_DIR) jjb/ ;
+
+clean:
+ rm -rf $(VENV_DIR) $(JOBCONFIG_DIR)