| 1 |
#!/usr/bin/make -f
|
| 2 |
# debian/rules file for libxerces2-java (uses cdbs)
|
| 3 |
|
| 4 |
include /usr/share/cdbs/1/rules/debhelper.mk
|
| 5 |
include /usr/share/cdbs/1/rules/simple-patchsys.mk
|
| 6 |
include /usr/share/cdbs/1/class/ant.mk
|
| 7 |
|
| 8 |
JAVA_HOME := /usr/lib/fjsdk
|
| 9 |
ANT_HOME := /usr/share/ant1.6
|
| 10 |
|
| 11 |
# Additional JARs to add to the class path, either full path or just the
|
| 12 |
# basename for JARs in /usr/share/java. The ".jar" suffix may also be ommitted
|
| 13 |
DEB_JARS := /usr/share/ant1.6/lib/ant-launcher.jar xml-commons-resolver-1.1
|
| 14 |
|
| 15 |
# Build compiler
|
| 16 |
DEB_ANT_COMPILER := jikes
|
| 17 |
|
| 18 |
# Ant targets to call
|
| 19 |
DEB_ANT_CLEAN_TARGET :=
|
| 20 |
DEB_ANT_BUILD_TARGET := jar
|
| 21 |
|
| 22 |
|
| 23 |
clean::
|
| 24 |
rm -rf build
|
| 25 |
|