#********************************************************************* # # (C) 2003 Yumetech, Inc # http://aviatrix3d.j3d.org # #********************************************************************* # Names of packages to be compiled. These are declared in the order that # they are to be compiled in. We create one at a time BUILD_ORDER = \ org.j3d.aviatrix3d.iutil \ org.j3d.aviatrix3d.picking \ org.j3d.aviatrix3d \ org.j3d.aviatrix3d.pipeline \ org.j3d.aviatrix3d.pipeline.audio \ org.j3d.aviatrix3d.pipeline.graphics \ org.j3d.aviatrix3d.output.audio \ org.j3d.aviatrix3d.output.graphics \ org.j3d.aviatrix3d.rendering \ org.j3d.renderer.aviatrix3d.util \ org.j3d.renderer.aviatrix3d.nodes \ org.j3d.renderer.aviatrix3d.geom \ org.j3d.renderer.aviatrix3d.geom.hanim \ org.j3d.renderer.aviatrix3d.geom.particle \ org.j3d.renderer.aviatrix3d.geom.volume \ org.j3d.renderer.aviatrix3d.texture \ org.j3d.renderer.aviatrix3d.navigation \ org.j3d.renderer.aviatrix3d.loader \ org.j3d.renderer.aviatrix3d.loader.dem \ org.j3d.renderer.aviatrix3d.loader.discreet \ org.j3d.renderer.aviatrix3d.loader.stl \ org.j3d.renderer.aviatrix3d.loader.vterrain \ # Names of packages that we want included in the javadoc JAVADOC_PACKAGES = \ org.j3d.aviatrix3d \ org.j3d.aviatrix3d.iutil \ org.j3d.aviatrix3d.picking \ org.j3d.aviatrix3d.pipeline \ org.j3d.aviatrix3d.pipeline.audio \ org.j3d.aviatrix3d.pipeline.graphics \ org.j3d.aviatrix3d.output.audio \ org.j3d.aviatrix3d.output.graphics \ org.j3d.aviatrix3d.rendering \ org.j3d.renderer.aviatrix3d.util \ org.j3d.renderer.aviatrix3d.nodes \ org.j3d.renderer.aviatrix3d.geom \ org.j3d.renderer.aviatrix3d.geom.hanim \ org.j3d.renderer.aviatrix3d.geom.particle \ org.j3d.renderer.aviatrix3d.geom.volume \ org.j3d.renderer.aviatrix3d.texture \ org.j3d.renderer.aviatrix3d.navigation \ org.j3d.renderer.aviatrix3d.loader \ org.j3d.renderer.aviatrix3d.loader.dem \ org.j3d.renderer.aviatrix3d.loader.discreet \ org.j3d.renderer.aviatrix3d.loader.stl \ org.j3d.renderer.aviatrix3d.loader.vterrain \ # A version number we tack onto the JAR file name for eclipse versioning # purposes. JAR_VERSION=2.0.0 # Names of JAR files we want to create JARS = aviatrix3d-all.jar \ aviatrix3d-core.jar \ aviatrix3d-utils.jar \ # List of packages that have native code libraries in use and require # JNI header generation NATIVE_PACKAGES = # 3rd party libraries that need including. JARS_3RDPARTY= # Definitions of setup information if we are making a self-executable JAR MAIN_CLASS = MAIN_PACKAGE = MAIN_JAR = aviatrix3d-all.jar #********************************************************************* # # Javadoc # #********************************************************************* OVERVIEW = overview.html WINDOWTITLE = 'Aviatrix3D 2.0 Scene Graph API' DOCTITLE = 'Aviatrix3D 2.0 Project API' HEADER = 'Aviatrix3D
2.0 Dev' BOTTOM = '
\ Latest Info from \ http://aviatrix3d.j3d.org/
\ Copyright © 2003 - 2005 \ j3d.org \
' # A list of the local directories that contain other Javadoc that we want # to link to. For example we link to the JDK, JAXP, SAI and JUnit Javadocs # here. Note that these *must* be full URLs and not just local directory # references. If your directory path contains a space in it, you may be in # trouble. We haven't tested it with that. Try using double quotes inside # the single quotes to get the space treated in the file name #LINK_URLS = 'file:///c:/java/jaxp-1.1/docs/api/' \ # 'file:///c:/java/junit3.5/javadoc/' \ # 'file:///c:/java/jdk1.3/docs/api/' \ # 'file:///c:/java/j3d/1.2.1/html/' include $(PROJECT_ROOT)/make/Makefile.jav