#### # # Makefile for building class name conflict test programs. See instructions in # ./template.C for how to use this example. # # # Model object files. N.A. # MODEL_OBJS = # # View object files. N.A. # VIEW_OBJS = # # Process object files. # TEMPLATE_OBJS = template.o INSERT_OBJS = insert.o # # All of the object files. # ALL_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 # RELEASE = projects/alpha PROJECTS_DIR = /home/phoenix/faculty1/gfisher/$(RELEASE) PROJECTS_INCLUDE_DIR = $(PROJECTS_DIR)/include PROJECTS_LIB_DIR = $(PROJECTS_DIR)/lib/$(PLATFORM) # # Paths to relevant projects/support directories for various support functions, # such as source code printing. # SUPPORT_DIR = $(PROJECTS_DIR)/support SUPPORT_DOC_DIR = $(SUPPORT_DIR)/documentation SUPPORT_ADMIN_DIR = $(SUPPORT_DIR)/administration # # 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: template insert # # Build the targets. # template: $(TEMPLATE_OBJS) $(CC) $(LDFLAGS) $(TEMPLATE_OBJS) $(LIBS_g) -o template insert: $(INSERT_OBJS) $(CC) $(LDFLAGS) $(INSERT_OBJS) $(LIBS_g) -o insert # # 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 template insert # # Generate dependencies using makedepend. # depend: $(DEPEND_SRCS) makedepend $(DEPEND_FLAGS) $? # DO NOT DELETE THIS LINE -- make depend depends on it. insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/_IO_config.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/bitmap-push-button.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/button.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/interactor.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/defs.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/subject.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/resource.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/font-by-name.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/font.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/full-text-editor.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/std-macros.h insert.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/adjuster.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/border.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/box.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/scene.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/glue.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/shape.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/regexp.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/painter.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/scroller.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/sensor.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/event.h insert.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h insert.o: /usr/include/sys/machtypes.h /usr/include/sys/int_types.h insert.o: /usr/include/sys/select.h /usr/include/sys/time.h insert.o: /usr/include/sys/time.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/streditor.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/textbuffer.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/texteditor.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/textdisplay.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/world.h insert.o: /usr/include/ctype.h /usr/include/stdio.h insert.o: /usr/include/sys/va_list.h /usr/include/stdlib.h insert.o: /usr/include/string.h /usr/include/sys/stat.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/intlist.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/list.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/iv-support.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/label.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/message.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/model.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/quit-button.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/quit-exception.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/simple-dialog.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/dialog.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/str.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/strlist.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/view.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/banner.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/bitmap.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/brush.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/canvas.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/catalog.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/stub.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/tag.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/chief.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/color.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/connection.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/control.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/cursor.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/deck.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/defs-crap.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/deputy.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/filebrowser.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/strbrowser.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/filechooser.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/strchooser.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/frame.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/graphic.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/base.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/geomobjs.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/persistent.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/classes.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/ppaint.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/paint.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/pattern.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/objman.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/pfile.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/ref.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/reflist.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/grconstruct.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/inet.h insert.o: //usr/include/netinet/in.h /usr/include/sys/stream.h insert.o: /usr/include/sys/vnode.h /usr/include/sys/t_lock.h insert.o: /usr/include/sys/machlock.h /usr/include/sys/sleepq.h insert.o: /usr/include/sys/turnstile.h /usr/include/sys/param.h insert.o: /usr/include/sys/unistd.h /usr/include/sys/pirec.h insert.o: /usr/include/sys/mutex.h /usr/include/sys/rwlock.h insert.o: /usr/include/sys/semaphore.h /usr/include/sys/condvar.h insert.o: /usr/include/sys/cred.h /usr/include/sys/uio.h insert.o: /usr/include/sys/resource.h /usr/include/vm/seg_enum.h insert.o: /usr/include/sys/poll.h /usr/include/sys/strmdep.h insert.o: /usr/include/sys/model.h /usr/include/sys/byteorder.h insert.o: //usr/include/sys/socket.h /usr/include/sys/netconfig.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/menu.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/packet.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/panner.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/perspective.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/propsheet.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/raster.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/reqerr.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubband.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubcurve.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubgroup.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubline.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubrect.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubverts.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/space.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/spaceman.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/strpool.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/strtable.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/table.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/tagtable.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/transformer.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/tray.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/viewport.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/worldview.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/cache.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/colormaker.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/damage.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/ellipses.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/grblock.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/grclasses.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/hash.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/instance.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/lines.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/picture.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/polygons.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/rasterrect.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/splines.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/stencil.h insert.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/util.h insert.o: /usr/include/math.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/_IO_config.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/bitmap-push-button.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/button.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/interactor.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/defs.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/subject.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/resource.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/font-by-name.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/font.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/full-text-editor.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/std-macros.h template.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/adjuster.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/border.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/box.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/scene.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/glue.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/shape.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/regexp.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/painter.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/scroller.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/sensor.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/event.h template.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h template.o: /usr/include/sys/machtypes.h /usr/include/sys/int_types.h template.o: /usr/include/sys/select.h /usr/include/sys/time.h template.o: /usr/include/sys/time.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/streditor.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/textbuffer.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/texteditor.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/textdisplay.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/world.h template.o: /usr/include/ctype.h /usr/include/stdio.h template.o: /usr/include/sys/va_list.h /usr/include/stdlib.h template.o: /usr/include/string.h /usr/include/sys/stat.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/intlist.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/list.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/iv-support.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/label.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/message.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/model.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/quit-button.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/quit-exception.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/simple-dialog.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/dialog.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/str.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/strlist.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/view.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/banner.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/bitmap.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/brush.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/canvas.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/catalog.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/stub.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/tag.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/chief.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/color.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/connection.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/control.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/cursor.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/deck.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/defs-crap.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/deputy.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/filebrowser.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/strbrowser.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/filechooser.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/strchooser.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/frame.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/graphic.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/base.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/geomobjs.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/persistent.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/classes.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/ppaint.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/paint.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/pattern.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/objman.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/pfile.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/ref.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/reflist.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/grconstruct.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/inet.h template.o: //usr/include/netinet/in.h /usr/include/sys/stream.h template.o: /usr/include/sys/vnode.h /usr/include/sys/t_lock.h template.o: /usr/include/sys/machlock.h /usr/include/sys/sleepq.h template.o: /usr/include/sys/turnstile.h /usr/include/sys/param.h template.o: /usr/include/sys/unistd.h /usr/include/sys/pirec.h template.o: /usr/include/sys/mutex.h /usr/include/sys/rwlock.h template.o: /usr/include/sys/semaphore.h /usr/include/sys/condvar.h template.o: /usr/include/sys/cred.h /usr/include/sys/uio.h template.o: /usr/include/sys/resource.h /usr/include/vm/seg_enum.h template.o: /usr/include/sys/poll.h /usr/include/sys/strmdep.h template.o: /usr/include/sys/model.h /usr/include/sys/byteorder.h template.o: //usr/include/sys/socket.h /usr/include/sys/netconfig.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/menu.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/packet.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/panner.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/perspective.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/propsheet.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/raster.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/reqerr.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubband.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubcurve.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubgroup.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubline.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubrect.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/rubverts.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/space.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/spaceman.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/strpool.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/strtable.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/table.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/tagtable.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/transformer.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/tray.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/viewport.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/worldview.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/cache.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/colormaker.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/damage.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/ellipses.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/grblock.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/grclasses.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/hash.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/instance.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/lines.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/picture.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/polygons.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/rasterrect.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/splines.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/stencil.h template.o: /home/phoenix/faculty1/gfisher/projects/alpha/include/InterViews/Graphic/util.h template.o: /usr/include/math.h