forked from fuenby/rtf-to-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
28 lines (23 loc) · 1.04 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<!-- ======================================================================
23.01.2012 21:55:33
rtf-to-html
description
christopher.roscoe
====================================================================== -->
<project name="rtf-to-html" default="default">
<description>
description
</description>
<!-- =================================
target: default
================================= -->
<target name="default" depends="clean" description="description">
<java classpath="out/antlr-3.1.1-runtime.jar" classname="org.antlr.Tool" args="Rtf.g"></java>
</target>
<!-- - - - - - - - - - - - - - - - - -
target: depends
- - - - - - - - - - - - - - - - - -->
<target name="clean">
</target>
</project>