diff options
Diffstat (limited to 'src/native/ogl/build-linux-ia64.xml')
-rw-r--r-- | src/native/ogl/build-linux-ia64.xml | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/src/native/ogl/build-linux-ia64.xml b/src/native/ogl/build-linux-ia64.xml deleted file mode 100644 index de2afad..0000000 --- a/src/native/ogl/build-linux-ia64.xml +++ /dev/null @@ -1,52 +0,0 @@ -<?xml version="1.0"?> - -<!-- Ant file for building native ogl renderer files for Linux IA64 --> -<project name="j3d-core native" default="compile"> - - <target name="compile"> - - <!-- - /* - * TODO: To compile CG, add the following the the "link" command: - * -lCg -lCgGL -lGLU -lpthread - */ - --> - - <echo message="Executing 64 bit native renderer build [${bldType}]"/> - - <!-- Create the build directories for linux --> - <mkdir dir="${build}/${platform}/${bldType}/native/ogl/objs"/> - <mkdir dir="${build}/${platform}/${bldType}/lib/ia64"/> - - <property name="oglsrc" location="${src}/native/ogl"/> - - <!-- Compile the c source files; based on build-linux-amd64.xml--> - <exec dir="${build}/${platform}/${bldType}/native/ogl/objs" executable="gcc"> - <arg line="-I${oglsrc} -I${java.home}/../include -I${java.home}/../include/linux -I${javahCoreTarget} ${bldFlag} -DLINUX -c ${oglsrc}/DrawingSurfaceObjectAWT.c ${oglsrc}/Canvas3D.c ${oglsrc}/GraphicsContext3D.c ${oglsrc}/NativeScreenInfo.c ${oglsrc}/NativeConfigTemplate3D.c ${oglsrc}/MasterControl.c ${oglsrc}/GeometryArrayRetained.c ${oglsrc}/Attributes.c ${oglsrc}/CgShaderProgram.c ${oglsrc}/GLSLShaderProgram.c ${oglsrc}/Lights.c"/> - </exec> - - <!-- Create the library file; based on build-linux-amd64.xml--> - <!-- Must use gcc to link, not ld, hence also need -shared; refer to http://www.gelato.unsw.edu.au/linux-ia64/0006/0212.html --> - <!-- Removed -R/usr/openwin/lib - an ld specific option (should be a filename, not a dir?!?) --> - <exec dir="${build}/${platform}/${bldType}/native/ogl/objs" executable="gcc"> - <arg line="DrawingSurfaceObjectAWT.o Canvas3D.o GraphicsContext3D.o NativeScreenInfo.o NativeConfigTemplate3D.o MasterControl.o GeometryArrayRetained.o Attributes.o CgShaderProgram.o GLSLShaderProgram.o Lights.o -G -z defs -shared -L/usr/X11R6/lib -ldl -lGL -lX11 -lXext -lm -lnsl -lc -L${java.home}/lib/ia64 -ljawt -L${java.home}/lib/ia64/jrockit -ljvm -o libj3dcore-ogl.so"/> - </exec> -<!-- -L${java.home}/lib/ia64/server -ljvm -o libj3dcore-ogl.so"/> --> - - <!-- Copy the copyright library file --> - <copy file="${build}/${platform}/${bldType}/native/ogl/objs/libj3dcore-ogl.so" - todir="${build}/${platform}/${bldType}/lib/ia64"/> - - </target> - - <target name="dist"> - <!-- Create the distribution directory --> - <mkdir dir="${dist}/${platform}/lib/ia64"/> - - <!-- Copy the library files --> - <copy file="${build}/${platform}/opt/lib/ia64/libj3dcore-ogl.so" - todir="${dist}/${platform}/lib/ia64"/> - - </target> - -</project> |