aboutsummaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorTom Faulhaber <git_net@infolace.com>2009-04-06 00:42:36 +0000
committerTom Faulhaber <git_net@infolace.com>2009-04-06 00:42:36 +0000
commit677874c25127d1b94bdabc03b280d8a538beb85f (patch)
treec5fd6b824352c60c5da3389ae5c0b549bf4567d2 /build.xml
parentfd841069d7c19c38175241836880ec8b42263f3b (diff)
Added tests for the pretty printer/cl-format to the main test driver
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index f7ba52b7..dfdcd9d2 100644
--- a/build.xml
+++ b/build.xml
@@ -69,14 +69,15 @@
<target name="test" depends="test_clojure,test_contrib,test_datalog"
description="Run all tests"/>
- <target name="check_hasclojure" depends="init"
+ <target name="check_hasclojure"
description="Print a warning message if clojure.jar is undefined"
unless="hasclojure">
<echo>WARNING: You have not defined a path to clojure.jar so I can't compile files.
This will cause some parts of clojure.contrib not to work (e.g., pretty print).
- To enable compiling run "ant -Dclojure.jar=&lt;...path to clojure.jar..&gt;"
+ To enable compiling, run "ant -Dclojure.jar=&lt;...path to clojure.jar..&gt;"
</echo>
</target>
+
<target name="compile_clojure" depends="init,check_hasclojure"
description="Compile Clojure sources."
if="hasclojure">