Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
droplet-sequence-generator
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Wagenhuber
droplet-sequence-generator
Commits
43e0095e
Commit
43e0095e
authored
8 years ago
by
Peter Wagenhuber
Browse files
Options
Downloads
Patches
Plain Diff
initial commit
parents
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build.xml
+63
-0
63 additions, 0 deletions
build.xml
with
63 additions
and
0 deletions
build.xml
0 → 100644
+
63
−
0
View file @
43e0095e
<project
name=
"nloc"
default=
"show"
basedir=
"."
>
<description>
build file for droplet sequence generator
</description>
<!-- set global properties for this build -->
<property
name=
"docdir"
location=
"doc"
/>
<property
name=
"src"
location=
"./src"
/>
<property
name=
"build"
location=
"./build"
/>
<property
name=
"libs"
location=
"/usr/share/java"
/>
<path
id=
"classpath"
>
<fileset
dir=
"${libs}"
includes=
"**/*.jar"
/>
<pathelement
location=
"${build}"
/>
</path>
<target
name=
"init"
>
<!-- Create the time stamp -->
<tstamp/>
<mkdir
dir=
"${docdir}"
/>
<mkdir
dir=
"${build}"
/>
</target>
<target
name=
"compile"
depends=
"init,ctags"
description=
"compile the source "
>
<!-- Compile the java code from ${src} into ${build} -->
<javac
srcdir=
"${src}"
destdir=
"${build}"
classpathref=
"classpath"
debug=
"true"
/>
<property
name =
"build.compiler.emacs"
value =
"true"
/>
<jar
destfile=
"${build}/dgen.jar"
basedir=
"${build}"
includes=
"**/*.class"
/>
</target>
<target
name=
"clean"
description=
"clean up classes and doc"
>
<delete>
<fileset
dir=
"."
includes=
"**/*.class"
/>
</delete>
<delete
dir=
"${doc}"
/>
<delete
dir=
"${build}"
/>
<delete
file=
"tags"
/>
</target>
<target
name=
"ctags"
description=
"generate tags file using ctags"
>
<!-- generate tags -->
<exec
executable=
"ctags"
>
<arg
line=
"-R ."
/>
</exec>
</target>
<target
name=
"doc"
depends=
"init"
description=
"generate javadoc"
>
<javadoc
destdir=
"${docdir}"
sourcepath=
"${src}"
link=
"file:///usr/share/doc/openjdk-8-jdk/api/"
Private=
"yes"
>
<fileset
dir=
"${src}"
includes=
"**/*.java"
/>
</javadoc>
</target>
</project>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment