diff options
author | Sven Gothel <[email protected]> | 2011-06-08 05:51:33 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-06-08 05:51:33 +0200 |
commit | 434619d326844117d498045fd8f7c62952bc681f (patch) | |
tree | f3b489d254964fdd172a4478a00026bf2914071b /make/build.xml | |
parent | a87c56c95099de5b6cbc9bd8bf6f1924a3dd6387 (diff) |
build.xml: native jar shall be created in native build target
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/make/build.xml b/make/build.xml index 7309381..be6b3d781 100644 --- a/make/build.xml +++ b/make/build.xml @@ -460,6 +460,13 @@ </antcall> <antcall target="c.manifest" inheritRefs="true" /> + + <jar destfile="${build}/gluegen-rt-natives-${os.and.arch}.jar" manifest="${build}/Manifest-rt.temp"> + <fileset dir="${build}/obj"> + <include name="*gluegen-rt.${native.library.suffix}" /> + </fileset> + </jar> + </target> <!-- ================================================================== --> @@ -651,11 +658,6 @@ <include name="jogamp/common/**" /> </fileset> </jar> - <jar destfile="${build}/gluegen-rt-natives-${os.and.arch}.jar" manifest="${build}/Manifest-rt.temp"> - <fileset dir="${build}/obj"> - <include name="*gluegen-rt.${native.library.suffix}" /> - </fileset> - </jar> <!-- Copy antlr.jar into build directory for convenience so gluegen.jar can be run via "java -jar". antlr.jar is |