#### # # Makefile for building simple InterViews dialog examples. # # # Model object files. # DIALOG_OBJS = simple-dialog.o simple-dialog-test.o # # View object files. # VIEW_OBJS = # None needed. These are small self-contained examples. # # Process object files. # PROCESS_OBJS = # None needed # # All of the object files. # ALL_OBJS = $(MODEL_OBJS) $(VIEW_OBJS) $(PROCESS_OBJS) # # Relative paths to design and implementation directories. # DESIGN_DIR = .. IMPLE_DIR = .. # # Platform type. Use to specify what platform the make is on. At Cal Poly, # the following platform names are used: # # SUN4G: SUN4s galaxy and phoenix # SUN4K: SUN4 kdat # HP700: HP 700 cobra cluster # HP400: HP 400 garden cluster # # Note that on kdat, the SUN4K directory may not always exists. If it does # not, the SUN4G directory holds the executables. This is because # galaxy/phoenix executables will run on kdat, but in order to make native on # kdat, a different makefile is need to accomodate differences between kdat # and galaxy, such as absolute file paths. # PLATFORM = SUN4K # # Paths to relevant root project directories # PROJECTS_DIR = /users/faculty/gfisher/projects/alpha PROJECTS_INCLUDE_DIR = $(PROJECTS_DIR)/include PROJECTS_LIB_DIR = $(PROJECTS_DIR)/lib/$(PLATFORM) SUPPORT_DOC_DIR = $(PROJECTS_DIR)/support/documentation # # Paths to the relevant directories of the InterViews GUI toolkit # IV_DIR = $(PROJECTS_DIR)/interviews IV_INCLUDE_DIR = $(IV_DIR)/design IV_LIB_DIR = $(IV_DIR)/implementation/libInterViews/$(PLATFORM) IV_LIB_GRAPHICS_DIR = $(IV_DIR)/implementation/libgraphic/$(PLATFORM) # # InterViews libraries; the _g version is compiled with debugging on, so that # GUI library functions can be traced if necessary. # IV_LIBS = $(IV_LIB_DIR)/libInterViewsX11.a $(IV_LIB_DIR)/libgraphic.a IV_LIBS_g = $(IV_LIB_DIR)/libInterViewsX11-g.a \ $(IV_LIB_GRAPHICS_DIR)/libgraphic-g.a # # X Windows and other system libraries. # X_LIB = -lX11 # X Windows lib OTHER_LIBS = -lsupport \ -liv-local \ -lm -lg++ \ -lgen # # Compilation flags and related definitions # CFLAGS = -c -g \ -I$(DESIGN_DIR) -I$(PROJECTS_INCLUDE_DIR) -I$(IV_INCLUDE_DIR) \ -Dgcc_2_6_3 -DOLD_EXCEPTION_HANDLING LDFLAGS = -g -L/usr/openwin/lib -L$(PROJECTS_LIB_DIR) CC = g++ GCC = gcc LIBS = $(OTHER_LIBS) $(IV_LIBS) $(X_LIB) LIBS_g = $(OTHER_LIBS) $(IV_LIBS_g) $(X_LIB) DEPEND_DIRS = -I$(IV_SRC_DIR) DEPEND_SRCS = $(IMPLE_DIR)/*.C DEPEND_FLAGS = -I$(DESIGN_DIR) -I$(PROJECTS_INCLUDE_DIR) -I$(IV_INCLUDE_DIR) \ -Dgcc_2_6_3 -DOLD_EXCEPTION_HANDLING # # Default definition to make. # default: simple-dialog # # Build the simple-dialog example # simple-dialog: $(DIALOG_OBJS) $(CC) $(LDFLAGS) $(DIALOG_OBJS) $(LIBS_g) -o simple-dialog # # Build the design only, which means just compile the .h files, all of which # are included in compile-stub.C. # design: $(CC) $(CFLAGS) $(DESIGN_DIR)/compile-stub.C # # Generic pattern rules to make all of the dialog implemenation files. # %.o: $(IMPLE_DIR)/%.C $(CC) $(CFLAGS) $< %.E: $(IMPLE_DIR)/%.C $(CC) -E $(CFLAGS) $< > $*.E # # Delete all object files. # clean: rm -f *.o simple-dialog # # Generate dependencies using makedepend. # depend: $(DEPEND_SRCS) makedepend $(DEPEND_FLAGS) $(DEPEND_DIRS) $? print: print_design print_implementation print_support print_design: csh -f -c "cd $(DESIGN_DIR); \ $(SUPPORT_DOC_DIR)/codeprint2.csh \ ../documentation/formatted-code \ roldex/design \ *.h" print_implementation: csh -f -c "cd $(IMPLE_DIR); \ $(SUPPORT_DOC_DIR)/codeprint2.csh \ ../documentation/formatted-code \ roldex/implementation \ *.C" print_support: csh -f -c "cd $(PROJECTS_INCLUDE_DIR) ; \ ../support/documentation/codeprint2.csh \ ../dialog/documentation/formatted-code \ support/design \ view.h model.h" # DO NOT DELETE THIS LINE -- make depend depends on it. simple-dialog.o: ../simple-dialog.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/std-macros.h simple-dialog.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/box.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/scene.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/interactor.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/defs.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/dialog.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/font.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/resource.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/quit-button.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/button.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/subject.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/glue.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/shape.h simple-dialog.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/world.h