aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/share/build-windows-i586-gcc.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/native/share/build-windows-i586-gcc.xml')
-rw-r--r--src/native/share/build-windows-i586-gcc.xml63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/native/share/build-windows-i586-gcc.xml b/src/native/share/build-windows-i586-gcc.xml
new file mode 100644
index 0000000..b34144d
--- /dev/null
+++ b/src/native/share/build-windows-i586-gcc.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0"?>
+
+<!--
+/*
+ * $RCSfile$
+ *
+ * Copyright (c) 2004 Sun Microsystems, Inc. All rights reserved.
+ *
+ * Use is subject to license terms.
+ *
+ * $Revision$
+ * $Date$
+ * $State$
+ */
+ -->
+
+<!-- Ant file for building native utilities files for Windows-i586 -->
+<project name="Java 3D" default="compile">
+
+ <target name="compile">
+
+ <echo message="Executing 32 bit native utilities build [${bldType}]"/>
+
+ <!-- Create the build directories sparc -->
+ <mkdir dir="${build}/${platform}/${bldType}/native/share/objs"/>
+ <mkdir dir="${build}/${platform}/${bldType}/bin"/>
+
+ <property name="javaInclude"
+ location="${java.home}/../include"/>
+
+ <property name="javaWin32Include"
+ location="${java.home}/../include/win32"/>
+
+ <property name="sharesrc"
+ location="${core_utils_src}/native/share"/>
+
+ <!-- Compile the c source files-->
+ <!-- Inhibit all warning for native build. Remove -w to switch warning on -->
+ <exec dir="${build}/${platform}/${bldType}/native/share/objs" executable="gcc">
+ <arg line="-w -D_WINGDI_ -D_JNI_IMPLEMENTATION_ -I&quot;${javaInclude}&quot; -I&quot;${javaWin32Include}&quot; -I&quot;${javahUtilsTarget}&quot; ${bldFlag} -c &quot;${sharesrc}/J3DTimer.c&quot;"/>
+ </exec>
+
+ <!-- Create the library file-->
+ <exec dir="${build}/${platform}/${bldType}/native/share/objs" executable="gcc">
+ <arg line="-shared -o j3dutils.dll J3DTimer.o -Wl,--kill-at -L&quot;${java.home}\..\lib&quot; -ljawt"/>
+ </exec>
+
+ <!-- Copy the copyright library file -->
+ <copy file="${build}/${platform}/${bldType}/native/share/objs/j3dutils.dll"
+ todir="${build}/${platform}/${bldType}/bin"/>
+
+ </target>
+
+ <target name="dist">
+ <!-- Create the distribution directory -->
+ <mkdir dir="${dist}/${platform}/bin"/>
+
+ <!-- Copy the library files -->
+ <copy file="${build}/${platform}/opt/bin/j3dutils.dll"
+ todir="${dist}/${platform}/bin"/>
+ </target>
+
+</project>