# # Top Level makefile for the j3d.org code repository. # # To use this, make sure that you have the PROJECT_ROOT environment variable # set # # This makefile is designed to build the entire library from scratch. It is # not desigend as a hacking system. It is recommended that you use the normal # javac/CLASSPATH setup for that. # # The following commands are offered: # # - class: Compile just the classes. Don't make JAR file # - jar: Make the java JAR file # - javadoc: Generate the javadoc information # - all: Build everything (including docs) # - clean: Blow everything away # ifndef PROJECT_ROOT export PROJECT_ROOT=/usr/local/src/projects/j3d.org/aviatrix3d endif include $(PROJECT_ROOT)/make/Makefile.inc VERSION=0.1 all: class jar javadoc class: cd $(JAVA_DIR) && make buildall jar: cd $(JAVA_DIR) && make jar jni: cd $(JAVA_DIR) && make jni libs: cd $(JAVA_DIR) && make nativeall cd $(NATIVE_DIR) && make buildall javadoc: cd $(JAVA_DIR) && make javadoc clean: cd $(JAVA_DIR) && make clean