You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
770 B
29 lines
770 B
<?xml version="1.0" encoding="iso-8859-1"?> |
|
<project |
|
basedir="." |
|
default="all" |
|
name="epub2pdf"> |
|
<target name="compile"> |
|
<path id="classpath"> |
|
<pathelement location="obj"/> |
|
<fileset dir="epub2pdf/lib" includes="*.jar"/> |
|
</path> |
|
<javac |
|
srcdir="src" |
|
destdir="obj" |
|
verbose="no" |
|
classpathref="classpath"> |
|
<include name="**/*.java"/> |
|
</javac> |
|
</target> |
|
<target name="link"> |
|
<jar |
|
jarfile="epub2pdf/epub2pdf.jar" |
|
basedir="obj"> |
|
<manifest> |
|
<attribute name="Main-Class" value="com.amphisoft.epub2pdf.Converter"/> |
|
</manifest> |
|
</jar> |
|
</target> |
|
</project> |
|
|
|
|