| 1 |
sgybas |
58 |
#!/usr/bin/make -f |
| 2 |
sgybas |
335 |
# debian/rules file for libxerces2-java (uses cdbs) |
| 3 |
sgybas |
58 |
|
| 4 |
sgybas |
335 |
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 |
sgybas |
58 |
|
| 8 |
sgybas |
540 |
JAVA_HOME := /usr/lib/fjsdk |
| 9 |
sgybas |
433 |
ANT_HOME := /usr/share/ant1.6 |
| 10 |
sgybas |
58 |
|
| 11 |
sgybas |
335 |
# 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 |
sgybas |
433 |
DEB_JARS := /usr/share/ant1.6/lib/ant-launcher.jar xml-commons-resolver-1.1 |
| 14 |
sgybas |
58 |
|
| 15 |
sgybas |
335 |
# Build compiler |
| 16 |
|
|
DEB_ANT_COMPILER := jikes |
| 17 |
sgybas |
58 |
|
| 18 |
sgybas |
335 |
# Ant targets to call |
| 19 |
sgybas |
433 |
DEB_ANT_CLEAN_TARGET := |
| 20 |
|
|
DEB_ANT_BUILD_TARGET := jar |
| 21 |
sgybas |
58 |
|
| 22 |
|
|
|
| 23 |
sgybas |
433 |
clean:: |
| 24 |
|
|
rm -rf build |
| 25 |
sgybas |
335 |
|