# # This design Makefile was derived from the CSC 206 design Makefile template, # q.v., in ~gfisher/classes/206/lib/waldorf-Makefiles/design-Makefile. # # In order for this Makefile to work properly, the project directory must be # set up per the 206 SOP, Volume 1. In particular, it must have the following # directories defined: # # DIRECTORY CONTENTS # ===================================================================== # design/javadoc root directory for the HTML files generated # by javadoc # # implementation/source/java root directory for the Java source files of # your project, organized into packages # # You must also have the following files defined: # # FILE CONTENTS # ===================================================================== # design/overview.html Descriptive overview of your entire project. # This will be placed by javadoc at the top # level of the generated HTML files. # # implementation/source/java/ Descriptive overview for each package defined # PKG_DIR/package.html in each implementation PKG_DIR. # # CSC 206 java lib directory LIB206 = /users/faculty/gfisher/classes/206/lib/JVM # Implementation source directory SOURCE = implementation/source/java # Javadoc destination directory DESTINATION = design/javadoc # File containing top-level javadoc overview for your project OVERVIEW_FILE = design/overview.html # All packages. PACKAGES = \ jdraw \ jdraw.align \ jdraw.align_ui \ jdraw.drawing_options \ jdraw.drawing_options_ui \ jdraw.edit \ jdraw.edit_ui \ jdraw.file \ jdraw.file_ui \ jdraw.graphics \ jdraw.jdraw \ jdraw.jdraw_ui \ jdraw.loading_ui \ jdraw.options \ jdraw.options_ui \ jdraw.structure \ jdraw.structure_ui \ jdraw.text \ jdraw.text_ui DOC_TITLE = "The JDraw Drawing Editor" ### FILL IN HERE: # Between the double quote characters below, fill in the title you want to # appear in the banner of the javadoc browser window. This will be used as the # HTML command by javadoc. WINDOW_TITLE = "The JDraw Drawing Editor" # Generate the javadoc files. doc: cd ..; \ javadoc \ -sourcepath $(SOURCE) \ -classpath $(LIB206) \ -d $(DESTINATION) \ -overview $(OVERVIEW_FILE) \ -doctitle $(DOC_TITLE) \ -windowtitle $(WINDOW_TITLE) \ $(PACKAGES)