#### # # Makefile for building a simple InterViews graphics example. This example is # part of the original InterViews distribution. # # # Object files. # GRAPHICS_OBJS = graphics.o GRAPHICS_SIMPLER_OBJS = graphics-simpler.o GRAPHICS_SIMPLER_COL_OBJS = graphics-simpler-with-color.o GRAPHICS_MORE_COLORS_OBJS = graphics-more-colors.o 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 = SUN4G # # Paths to relevant root project directories # RELEASE = projects/work PROJECTS_DIR = /home/phoenix/faculty1/gfisher/$(RELEASE) PROJECTS_INCLUDE_DIR = $(PROJECTS_DIR)/include PROJECTS_LIB_DIR = $(PROJECTS_DIR)/lib/$(PLATFORM) SUPPORT_DOC_DIR = $(PROJECTS_DIR)/support/documentation # # Support doc dir for source code printing purposes # 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_GRAPHICS_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 \ -lgen # # Compilation flags and related definitions # CFLAGS = -c -g \ -I$(DESIGN_DIR) -I$(PROJECTS_INCLUDE_DIR) -I$(IV_INCLUDE_DIR) \ -Dgcc_2_6_3 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_SRCS = $(IMPLE_DIR)/*.C DEPEND_FLAGS = -I$(DESIGN_DIR) -I$(PROJECTS_INCLUDE_DIR) -I$(IV_INCLUDE_DIR) \ -Dgcc_2_6_3 \ -I/opt/gnu/include/g++ -I/opt/gnu/sparc-sun-solaris2.6/include # # Default definition to make. # default: graphics graphics-simpler graphics-simpler-with-color \ graphics-more-colors # # Build the graphics examples. # graphics: $(GRAPHICS_OBJS) $(CC) $(LDFLAGS) $(GRAPHICS_OBJS) $(LIBS_g) -o graphics graphics-simpler: $(GRAPHICS_SIMPLER_OBJS) $(CC) $(LDFLAGS) $(GRAPHICS_SIMPLER_OBJS) $(LIBS_g) \ -o graphics-simpler graphics-simpler-with-color: $(GRAPHICS_SIMPLER_COL_OBJS) $(CC) $(LDFLAGS) $(GRAPHICS_SIMPLER_COL_OBJS) $(LIBS_g) \ -o graphics-simpler-with-color graphics-more-colors: $(GRAPHICS_MORE_COLORSOBJS) $(CC) $(LDFLAGS) $(GRAPHICS_MORE_COLORS_OBJS) $(LIBS_g) \ -o graphics-more-colors # # 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 implemenation files. # %.o: $(IMPLE_DIR)/%.C $(CC) $(CFLAGS) $< %.E: $(IMPLE_DIR)/%.C $(CC) -E $(CFLAGS) $< > $*.E # # Delete all object files. # clean: rm -f *.o graphics graphics-simpler-with-color \ graphics-simpler-more-colors # # Generate dependencies using makedepend. # depend: $(DEPEND_SRCS) makedepend $(DEPEND_FLAGS) $? 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 \ ../rolodex/documentation/formatted-code \ support/design \ view.h model.h" # DO NOT DELETE THIS LINE -- make depend depends on it. ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/bitmap.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/graphic.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/base.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/painter.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/geomobjs.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/persistent.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/classes.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ppaint.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/paint.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/brush.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/color.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/pattern.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/objman.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/pfile.h ../graphics-more-colors.o: /usr/include/stdio.h ../graphics-more-colors.o: /usr/include/sys/feature_tests.h ../graphics-more-colors.o: /usr/include/sys/va_list.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ref.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/reflist.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/grconstruct.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/panner.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/raster.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/rubrect.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/rubband.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/sensor.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h ../graphics-more-colors.o: /usr/include/sys/types.h ../graphics-more-colors.o: /usr/include/sys/isa_defs.h ../graphics-more-colors.o: /usr/include/sys/machtypes.h ../graphics-more-colors.o: /usr/include/sys/int_types.h ../graphics-more-colors.o: /usr/include/sys/select.h /usr/include/sys/time.h ../graphics-more-colors.o: /usr/include/sys/time.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/damage.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ellipses.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/grblock.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/label.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/lines.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/picture.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/polygons.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/rasterrect.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/splines.h ../graphics-more-colors.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/stencil.h ../graphics-more-colors.o: /usr/include/string.h /usr/include/stdlib.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/color.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/graphic.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/base.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/painter.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/geomobjs.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/persistent.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/classes.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ppaint.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/paint.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/brush.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/pattern.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/objman.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/pfile.h ../graphics-simpler-with-color.o: /usr/include/stdio.h ../graphics-simpler-with-color.o: /usr/include/sys/feature_tests.h ../graphics-simpler-with-color.o: /usr/include/sys/va_list.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ref.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/reflist.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/grconstruct.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/perspective.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/sensor.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h ../graphics-simpler-with-color.o: /usr/include/sys/types.h ../graphics-simpler-with-color.o: /usr/include/sys/isa_defs.h ../graphics-simpler-with-color.o: /usr/include/sys/machtypes.h ../graphics-simpler-with-color.o: /usr/include/sys/int_types.h ../graphics-simpler-with-color.o: /usr/include/sys/select.h ../graphics-simpler-with-color.o: /usr/include/sys/time.h ../graphics-simpler-with-color.o: /usr/include/sys/time.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/grblock.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/picture.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/polygons.h ../graphics-simpler-with-color.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/lines.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/graphic.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/base.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/painter.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/geomobjs.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/persistent.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/classes.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ppaint.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/paint.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/brush.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/color.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/pattern.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/objman.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/pfile.h ../graphics-simpler.o: /usr/include/stdio.h /usr/include/sys/feature_tests.h ../graphics-simpler.o: /usr/include/sys/va_list.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ref.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/reflist.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/grconstruct.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/perspective.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/sensor.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h ../graphics-simpler.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h ../graphics-simpler.o: /usr/include/sys/machtypes.h ../graphics-simpler.o: /usr/include/sys/int_types.h /usr/include/sys/select.h ../graphics-simpler.o: /usr/include/sys/time.h /usr/include/sys/time.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/grblock.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/picture.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/polygons.h ../graphics-simpler.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/lines.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/bitmap.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/graphic.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/base.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/painter.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/geomobjs.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/persistent.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/classes.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ppaint.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/paint.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/brush.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/color.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/pattern.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/objman.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/pfile.h ../graphics.o: /usr/include/stdio.h /usr/include/sys/feature_tests.h ../graphics.o: /usr/include/sys/va_list.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ref.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/reflist.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/grconstruct.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/panner.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/raster.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/rubrect.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/rubband.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/sensor.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h ../graphics.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h ../graphics.o: /usr/include/sys/machtypes.h /usr/include/sys/int_types.h ../graphics.o: /usr/include/sys/select.h /usr/include/sys/time.h ../graphics.o: /usr/include/sys/time.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/damage.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/ellipses.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/grblock.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/label.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/lines.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/picture.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/polygons.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/rasterrect.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/splines.h ../graphics.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/Graphic/stencil.h ../graphics.o: /usr/include/string.h /usr/include/stdlib.h