David Reiss | 48141bf | 2009-03-18 23:59:56 +0000 | [diff] [blame] | 1 | EXTRA_DIST = build.xml src test LICENSE |
David Reiss | c8abb07 | 2008-04-21 18:08:01 +0000 | [diff] [blame] | 2 | |
David Reiss | 3de1c4e | 2008-02-24 17:45:03 +0000 | [diff] [blame] | 3 | all-local: |
David Reiss | f8dcf03 | 2008-02-23 22:07:39 +0000 | [diff] [blame] | 4 | $(ANT) |
5 | |||||
6 | install-exec-hook: | ||||
Bryan Duxbury | 32e04b4 | 2009-03-20 16:43:06 +0000 | [diff] [blame] | 7 | $(ANT) install -Dinstall.path=$(DESTDIR)$(JAVA_PREFIX) \ |
8 | -Dinstall.javadoc.path=$(DESTDIR)$(docdir)/java | ||||
David Reiss | f8dcf03 | 2008-02-23 22:07:39 +0000 | [diff] [blame] | 9 | |
David Reiss | f9b5b12 | 2008-05-09 07:17:35 +0000 | [diff] [blame] | 10 | # Make sure this doesn't fail if ant is not configured. |
David Reiss | 2ca456a | 2008-02-24 16:42:18 +0000 | [diff] [blame] | 11 | clean-local: |
David Reiss | f9b5b12 | 2008-05-09 07:17:35 +0000 | [diff] [blame] | 12 | ANT=$(ANT) ; if test -z "$$ANT" ; then ANT=: ; fi ; \ |
13 | $$ANT clean | ||||
David Reiss | f8dcf03 | 2008-02-23 22:07:39 +0000 | [diff] [blame] | 14 | |
David Reiss | 223d6bd | 2008-02-24 02:03:17 +0000 | [diff] [blame] | 15 | check-local: all |
Bryan Duxbury | 50119f1 | 2009-01-29 21:31:25 +0000 | [diff] [blame] | 16 | $(ANT) test |
17 |