aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Rogan Creswick <creswick@gmail.com>2013-06-07 15:37:25 -0700
committerGravatar Rogan Creswick <creswick@gmail.com>2013-06-07 15:37:25 -0700
commit04d3c6e96ed4dd528418fe71a85e72316ae5bba4 (patch)
treed3caef5a806e2d74b26139954cec1a250382ff9f /Makefile
parent8690d56ff0bbd1031e8cc6788dd2159aac6b7adb (diff)
updated the headless tools to use the new rule set format and reorganized their locations to simplify building.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f00f25c..f35a817 100644
--- a/Makefile
+++ b/Makefile
@@ -80,15 +80,15 @@ MVN_TEST_CMD := xvfb-run -a $(MVN_EXE) test
define pkg
.PHONY: pkg-$1
pkg-$1:
- cd $1 && xvfb-run -a $(MVN_EXE) install
+ cd batchtools/$1 && xvfb-run -a $(MVN_EXE) install
endef
$(eval $(call pkg,rsTester))
$(eval $(call pkg,headless))
TEST_RUNNER_DIR := testrunner
-HEADLESS_DIR := headless
-RSTESTER_DIR := rsTester
+HEADLESS_DIR := batchtools/headless
+RSTESTER_DIR := batchtools/rsTester
test: fiveui.crx fiveui.xpi $(topdir)/profiles/chrome $(topdir)/profiles/firefox pkg-rsTester
# cd $(TEST_RUNNER_DIR) && $(MVN_TEST_CMD)