#### # # Makefile for building simple InterViews button examples. # # # Model object files. # BUTTON0_OBJS = button0.o BUTTONS_OBJS = buttons.o QUIT_OBJS = quit-button.o # # View object files. # VIEW_OBJS = # None needed. These are small self-contained examples, with # no separate view classes. # # 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 = ../../design 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 = SUN4G # # Paths to relevant root project directories # PROJECTS_DIR = /home/phoenix/faculty1/gfisher/projects/work PROJECTS_INCLUDE_DIR = $(PROJECTS_DIR)/include PROJECTS_LIB_DIR = $(PROJECTS_DIR)/lib/$(PLATFORM) # # 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 = $(IV_LIBS) $(X_LIB) $(OTHER_LIBS) LIBS_g = $(IV_LIBS_g) $(X_LIB) $(OTHER_LIBS) 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 \ -f Makefile-work # # Default definition to make. # default: button0 buttons # # Build the button 0 example. # button0: $(BUTTON0_OBJS) $(CC) $(LDFLAGS) $(BUTTON0_OBJS) $(LIBS_g) -o button0 buttons: $(BUTTONS_OBJS) $(CC) $(LDFLAGS) $(BUTTONS_OBJS) $(LIBS_g) -o buttons # # Build the design only, which means just compile the .h files, all of which # are included in compile-stub.C. # design: # BAD FORM HERE. This dir has no separate design files, since # it contains only small self-contained examples for quick # demonstration purposes. # # Generic pattern rules to make all of the rolodex implemenation files. # %.o: $(IMPLE_DIR)/%.C $(CC) $(CFLAGS) $< %.E: $(IMPLE_DIR)/%.C $(CC) -E $(CFLAGS) $< > $*.E # # Delete all object files. # clean: rm -f *.o button0 buttons # # Generate dependencies using makedepend. # depend: $(DEPEND_SRCS) makedepend $(DEPEND_FLAGS) $(DEPEND_DIRS) $? # DO NOT DELETE THIS LINE -- make depend depends on it. buttons.o: ../quit-exception.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h buttons.o: /usr/include/stdio.h /usr/include/sys/feature_tests.h quitbutton.o: ../quitbutton.h quitbutton.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h quitbutton.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h quitbutton.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h quitbutton.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h quitbutton.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h quitbutton.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h quitbutton.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h quitbutton.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h quitbutton.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/painter.h