-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.xml
More file actions
executable file
·27 lines (17 loc) · 779 Bytes
/
build.xml
File metadata and controls
executable file
·27 lines (17 loc) · 779 Bytes
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
<?xml version="1.0"?>
<!-- ======================================================================
May 23, 2007 6:21:03 PM
project
description
tech
====================================================================== -->
<project name="project" default="default">
<!-- =================================
target: default
================================= -->
<target name="default" description="--> description">
<java jar="sablecc.jar" fork="true" failonerror="true">
<arg line=" sablecc.scc" />
</java>
</target>
</project>