aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-11-09 02:42:54 +0100
committerSven Gothel <[email protected]>2010-11-09 02:42:54 +0100
commit1b24055fd9178e865ac91b67682ff36d89ae9028 (patch)
treee060d9678feb2c59898475c52b55ffba910c00a8 /make
parent7865b355bd52958f4b27e42b500e83c52255ef37 (diff)
Adding developer zip archive, which is being reused for deployment.
Diffstat (limited to 'make')
-rw-r--r--make/build-junit.xml7
-rwxr-xr-xmake/build.xml46
2 files changed, 46 insertions, 7 deletions
diff --git a/make/build-junit.xml b/make/build-junit.xml
index f006a1c..b28dce1 100644
--- a/make/build-junit.xml
+++ b/make/build-junit.xml
@@ -157,7 +157,7 @@
<compiler extends="@{compiler.cfg.id}" >
<sysincludepath path="${java.includes.dir}"/>
<sysincludepath path="${java.includes.dir.platform}"/>
- <includepath path="${stub.includes.dir}/common"/>
+ <sysincludepath path="${stub.includes.dir}/platform"/>
<includepath path="${test.junit.generation.dir}"/>
<includepath path="${build_t.gen}/native"/>
</compiler>
@@ -244,7 +244,10 @@
<dirset id="stub.includes.fileset.test" dir=".">
<include name="${test.junit.generation.dir}/**"/>
- <include name="${stub.includes.dir}/**" />
+ <include name="${stub.includes.dir}/gluegen" />
+ <include name="${stub.includes.dir}/macosx" />
+ <include name="${stub.includes.dir}/unix" />
+ <include name="${stub.includes.dir}/windows" />
</dirset>
<gluegen src="${test.junit.generation.dir}/test1-gluegen.c"
diff --git a/make/build.xml b/make/build.xml
index 7bc63c6..804ac8a 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -20,7 +20,7 @@
</fail>
<!-- This is the version of GlueGen you are building -->
- <property name="gluegen_base_version" value="1.0-beta07"/>
+ <property name="gluegen_base_version" value="2.0"/>
<import file="gluegen-cpptasks.xml" />
@@ -38,14 +38,15 @@
<property name="gluegen.excludes" value="com/jogamp/gluegen/runtime/BufferFactoryInternal.java,com/jogamp/gluegen/nativesig/**" />
</target>
- <target name="init" depends="gluegen.properties.load.user,setup-excludes-1,setup-excludes-2">
+ <target name="init" depends="gluegen.properties.load.user,gluegen.cpptasks.detect.os,setup-excludes-1,setup-excludes-2">
<!-- Declare all paths and user defined variables. -->
<property name="javac.bootclasspath-cdc.jar" value="lib/cdc_fp.jar" />
<!-- The source and build directories. -->
- <property name="src.java" value="../src/java" />
- <property name="build" location="../${rootrel.build}" />
+ <property name="project.root" value=".." />
+ <property name="src.java" value="${project.root}/src/java" />
+ <property name="build" location="${project.root}/${rootrel.build}" />
<property name="javadoc" location="${build}/javadoc" />
<property name="gluegen.lib.dir" value="${build}/obj"/>
@@ -89,6 +90,9 @@
<property name="tools.jar" value="${java.home}/../lib/tools.jar"/>
+ <property name="archive.name" value="gluegen-${gluegen_base_version}-${os.and.arch}" />
+ <property name="archive" value="${build}/${archive.name}" />
+
</target>
<!--
@@ -398,6 +402,7 @@
<compiler extends="${compiler.cfg.id}" >
<sysincludepath path="${java.includes.dir}"/>
<sysincludepath path="${java.includes.dir.platform}"/>
+ <sysincludepath path="${stub.includes.dir}/platform"/>
</compiler>
<linker extends="${linker.cfg.id}" />
@@ -662,7 +667,7 @@
<target name="base.compile" depends="init, gluegen.build" />
- <target name="all" depends="base.compile, junit.compile, tag.build" />
+ <target name="all" depends="base.compile, junit.compile, tag.build, developer-zip-archive" />
<target name="clean" depends="init">
<delete includeEmptyDirs="true">
@@ -733,4 +738,35 @@
includes="javadoc/**" />
</target>
+ <!-- ================================================================== -->
+ <!--
+ - Build the per-platform binary zip archive for developers.
+ - This must be called after all of the build targets complete.
+ -->
+
+ <target name="developer-zip-archive" depends="init" unless="build.noarchives">
+ <delete includeEmptyDirs="true" quiet="true" dir="${archive}" failonerror="false" />
+ <mkdir dir="${archive}" />
+ <copy file="${build}/artifact.properties" todir="${archive}"/>
+ <copy file="../LICENSE.txt" todir="${archive}" />
+ <mkdir dir="${archive}/jar" />
+ <copy todir="${archive}/jar">
+ <fileset dir="${build}" includes="gluegen*.jar"/>
+ </copy>
+ <mkdir dir="${archive}/lib" />
+ <copy todir="${archive}/lib">
+ <fileset dir="${build}/obj" includes="*${native.library.suffix}"/>
+ </copy>
+ <mkdir dir="${archive}/jnlp-files" />
+ <copy todir="${archive}/jnlp-files">
+ <fileset dir="${project.root}/jnlp-files" includes="*" />
+ </copy>
+ <delete quiet="true" file="${build}/${archive.name}.zip"/>
+ <zip destfile="${build}/${archive.name}.zip"
+ basedir="${build}"
+ includes="${archive.name}/**" />
+ <!-- Clean up after ourselves -->
+ <delete includeEmptyDirs="true" quiet="true" dir="${archive}" failonerror="false" />
+ </target>
+
</project>