-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
39 lines (39 loc) · 1.18 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
29
30
31
32
33
34
35
36
37
38
39
<?xml-model href=""?>
<project name="JCC816" default="build" basedir=".">
<property name="src" location="src"/>
<property name="bin" location="bin"/>
<property name="test_bin" location="bin"/>
<target name="build">
<exec executable="java">
<arg value = "org.antlr.v4.Tool"/>
<arg value = "-no-listener"/>
<arg value = "-visitor"/>
<arg value = "${src}/Grammar/C99.g4"/>
<arg value = "-package"/>
<arg value = "Grammar.C99"/>
<arg value = "-o"/>
<arg value = "${src}/Grammar/C99/"/>
</exec>
<exec executable="java">
<arg value = "org.antlr.v4.Tool"/>
<arg value = "-no-listener"/>
<arg value = "-visitor"/>
<arg value = "${src}/Grammar/C816.g4"/>
<arg value = "-package"/>
<arg value = "Grammar.C816"/>
<arg value = "-o"/>
<arg value = "${src}/Grammar/C816/"/>
</exec>
<exec executable="java">
<arg value = "org.antlr.v4.Tool"/>
<arg value = "-no-listener"/>
<arg value = "-visitor"/>
<arg value = "${src}/Grammar/C99A3.g4"/>
<arg value = "-package"/>
<arg value = "Grammar.C99A3"/>
<arg value = "-o"/>
<arg value = "${src}/Grammar/C99A3/"/>
</exec>
<javac srcdir="${src}" destdir="${bin}" debug="on"/>
</target>
</project>