aboutsummaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2006-10-23 17:49:48 +0000
committerKenneth Russel <[email protected]>2006-10-23 17:49:48 +0000
commit7a241a3f5e9cc4e24638b744d3862a92ae590b9d (patch)
tree0d2627920590e01905a5f9d885996f16da95d5c6 /make/build.xml
parent204b193ce6469647a421e7088ea6e49d7a45e694 (diff)
Removed now-obsolete platform-specific Ant targets; the correct way to
invoke a build is now simply by calling "ant" git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@958 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml126
1 files changed, 7 insertions, 119 deletions
diff --git a/make/build.xml b/make/build.xml
index e9aa670a0..8a67be6ee 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -29,18 +29,13 @@
- Java and C file generators. Note that it is only supported
- to create the Javadoc for the platform on which you are
- currently running.
- - Optional targets (NOTE, FIXME, may be deleted in the future):
- - freebsd
- - linux
- - linux.amd64
- - linux.ia64
- - macosx
- - macosxfat (ppc & i386 - requires Intel Transition Development Kit or fat Mac OS X)
- - solaris
- - win32.vc6
- - win32.vc7
- - win32.vc8
- - win32.mingw: build everything (jar, DSOs) for the current platform
+ -
+ - Note: on Windows the "win32.c.compiler" property in jogl.properties
+ - is required to select the appropriate C compiler. See the example
+ - jogl.properties in this directory for valid values. On Mac OS X
+ - universal binaries may also be built by setting the "macosxfat"
+ - property in jogl.properties; again see the example file in this
+ - directory.
-
- Optional properties:
- -Djogl.cg=1 when combined with the build or javadoc targets will cause
@@ -1411,111 +1406,4 @@
<property name="RImanifestfile" value="joglRIversion" />
<antcall target="all" inheritRefs="true" />
</target>
-
-
-
- <!-- ================================================================== -->
- <!--
- - Platform-specific targets intended both for backward compatibility as well
- - as to allow the end user to not have to override the C compiler in jogl.properties
- - (FIXME: should rethink the presence of all of these targets once the
- - nightly builds have been updated to not use them)
- -->
-
- <!--
- - Win32 with MS VC6
- -->
- <target name="win32.vc6">
- <property name="win32.c.compiler" value="vc6" />
- <antcall target="all" />
- </target>
-
- <!--
- - Win32 with MS VC7
- -->
- <target name="win32.vc7">
- <property name="win32.c.compiler" value="vc7" />
- <antcall target="all" />
- </target>
-
- <!--
- - Win32 with MS VC8
- -->
- <target name="win32.vc8">
- <property name="win32.c.compiler" value="vc8" />
- <antcall target="all" />
- </target>
-
- <!--
- - Win32 with mingw32
- -->
- <target name="win32.mingw">
- <property name="win32.c.compiler" value="mingw" />
- <antcall target="all" />
- </target>
-
- <!--
- - Linux (assuming GCC)
- -->
- <target name="linux">
- <antcall target="all" />
- </target>
-
- <!--
- - Linux on AMD64 (assuming GCC)
- -->
- <target name="linux.amd64">
- <antcall target="all" />
- </target>
-
- <!--
- - Linux on IA64 (assuming GCC)
- -->
- <target name="linux.ia64">
- <antcall target="all" />
- </target>
-
- <!--
- - Solaris (assuming Solaris CC)
- - builds 32 bit sparc or 32 bit x86
- -->
- <target name="solaris">
- <antcall target="all" />
- </target>
-
-
- <!--
- - Solaris Sparcv9 (assuming Solaris CC)
- -->
- <target name="solarisSparcv9">
- <antcall target="all" />
- </target>
-
-
- <!--
- - Solaris AMD64 (assuming Solaris CC)
- -->
- <target name="solarisAMD64">
- <antcall target="all" />
- </target>
-
-
- <!--
- - Mac OSX
- -->
- <target name="macosx">
- <antcall target="all" />
- </target>
- <!-- FIXME: should specify this in the property file as well -->
- <target name="macosxfat" depends="macosx">
- <property name="macosxfat" value="true" />
- <antcall target="all" />
- </target>
-
- <!--
- - FreeBSD (assuming GCC)
- -->
- <target name="freebsd">
- <antcall target="all" />
- </target>
</project>