#### # # Makefile for building the rolodex tool. # # # # Model object files. # MODEL_OBJS = \ add-input-errors.o \ card-list.o \ card.o \ change-input-errors.o \ delete-input-error.o \ edit-stub.o \ file.o \ help.o \ help-index.o \ rolodex.o \ rolodex-tool.o \ short-help-db.o \ short-help-list.o # # Model stubbed object files # MODEL_STUBBED_OBJS = \ card-list-stub.o \ card-stub.o \ edit-stub.o \ file-stub.o \ main-stub.o \ rolodex-stub.o \ rolodex-tool-stub.o # # View object files for the pulldown menu GUI. # MENU_VIEW_OBJS = \ add-card-buttons.o \ add-card-dialog.o \ change-card-dialog.o \ confirm-change-dialog.o \ confirm-delete-dialog.o \ delete-card-dialog.o \ edit-menu-stub.o \ error-message-dialog.o \ file-menu.o \ find-card-dialog.o \ found-cards-buttons.o \ found-cards-dialog.o \ no-found-cards-dialog.o \ read-only-str-editor.o \ rolodex-menu-ui.o \ rolodex-menu.o \ rolodex-ui.o \ white-background-tray.o # # View stubbed object files. # MENU_VIEW_STUBBED_OBJS = \ edit-menu-stub.o \ file-menu-stub.o \ rolodex-menu-stub.o \ rolodex-menu-ui-stub.o \ rolodex-ui.o \ white-background-tray.o # # View object files for the push button GUI. # BUTTON_VIEW_OBJS = \ rolodex-button-ui.o # # Object files for a complete tool with pulldoen menu GUI # MENU_ROLODEX_OBJS = $(MODEL_OBJS) $(MENU_VIEW_OBJS) # # Object files for a complete tool with pulldoen menu GUI, stubbed # implementations. # MENU_ROLODEX_STUBBED_OBJS = $(MODEL_STUBBED_OBJS) $(MENU_VIEW_STUBBED_OBJS) # # Object files for a complete tool with push button GUI. # BUTTON_ROLODEX_OBJS = $(MODEL_OBJS) $(BUTTON_VIEW_OBJS) # # Process object files. # PROCESS_OBJS = \ main.o # # All of the object files. # ALL_OBJS = $(MODEL_OBJS) $(MENU_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 # RELEASE = projects/work 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 # # Change this default make as appropriate. # default: rolodex # # Build a complete rolodex with a pulldown menu GUI. # rolodex: $(ALL_OBJS) $(CC) $(LDFLAGS) $(ALL_OBJS) $(LIBS_g) -o rolodex # # Build a rolodex rolodex with a pulldown menu GUI and stubbed model # implementations. # rolodex-stub: $(MENU_ROLODEX_STUBBED_OBJS) @echo Linking rolodex-stub $(CC) $(LDFLAGS) \ $(MENU_ROLODEX_STUBBED_OBJS) \ $(LIBS_g) -o rolodex-stub # # 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 # # Rule to make ../SUN4G/Makefile out of this (SUN4G-work) Makefile. # alpha-Makefile: csh -q -c ".make-alpha-Makefile" # # 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 clean: rm -f *.o rolodex rolodex-stub depend: $(DEPEND_SRCS) /home/faculty1/gfisher/bin/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. add-card-buttons.o: ../../design/add-card-buttons.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h add-card-buttons.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h add-card-buttons.o: ../../design/add-card-dialog.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h add-card-buttons.o: ../../design/card.h ../../design/basic-types.h add-card-buttons.o: ../../design/rolodex-menu-ui.h add-card-buttons.o: ../../design/change-card-dialog.h add-card-buttons.o: ../../design/rolodex.h ../../design/add-input-errors.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h add-card-buttons.o: ../../design/card-list.h add-card-buttons.o: ../../design/change-input-errors.h add-card-buttons.o: ../../design/delete-input-error.h add-card-buttons.o: ../../design/confirm-change-dialog.h add-card-buttons.o: ../../design/confirm-delete-dialog.h add-card-buttons.o: ../../design/delete-card-dialog.h add-card-buttons.o: ../../design/error-message-dialog.h add-card-buttons.o: ../../design/read-only-str-editor.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h add-card-buttons.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h add-card-buttons.o: /usr/include/sys/machtypes.h add-card-buttons.o: /usr/include/sys/int_types.h /usr/include/sys/select.h add-card-buttons.o: /usr/include/sys/time.h /usr/include/sys/time.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h add-card-buttons.o: ../../design/find-card-dialog.h add-card-buttons.o: ../../design/found-cards-dialog.h add-card-buttons.o: ../../design/found-cards-buttons.h add-card-buttons.o: ../../design/no-found-cards-dialog.h add-card-buttons.o: ../../design/rolodex-ui.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h add-card-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h add-card-buttons.o: /usr/include/stdlib.h add-card-dialog.o: ../../design/add-card-dialog.h add-card-dialog.o: ../../design/add-card-buttons.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h add-card-dialog.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h add-card-dialog.o: ../../design/card.h ../../design/basic-types.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/label.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/font-by-name.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h add-card-dialog.o: ../../design/rolodex.h ../../design/add-input-errors.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h add-card-dialog.o: ../../design/card-list.h add-card-dialog.o: ../../design/change-input-errors.h add-card-dialog.o: ../../design/delete-input-error.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h add-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h add-input-errors.o: ../../design/add-input-errors.h add-input-errors.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h add-input-errors.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h add-input-errors.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h add-input-errors.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h add-input-errors.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h card-list-stub.o: ../../design/card-list.h ../../design/card.h card-list-stub.o: ../../design/basic-types.h card-list-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h card-list-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h card-list-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h card-list-stub.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h card-list-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h card-list.o: ../../design/card-list.h ../../design/card.h card-list.o: ../../design/basic-types.h card-list.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h card-list.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h card-list.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h card-list.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h card-list.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h card-list.o: /usr/include/stdio.h /usr/include/sys/va_list.h card-stub.o: ../../design/card.h ../../design/basic-types.h card-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h card-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h card-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h card-stub.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h card-stub.o: /usr/include/stdio.h /usr/include/sys/va_list.h card.o: ../../design/card.h ../../design/basic-types.h card.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h card.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h card.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h card.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h card.o: /usr/include/stdio.h /usr/include/sys/va_list.h change-card-dialog.o: ../../design/change-card-dialog.h change-card-dialog.o: ../../design/rolodex.h change-card-dialog.o: ../../design/add-input-errors.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h change-card-dialog.o: /usr/include/setjmp.h change-card-dialog.o: /usr/include/sys/feature_tests.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h change-card-dialog.o: ../../design/basic-types.h ../../design/card-list.h change-card-dialog.o: ../../design/card.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h change-card-dialog.o: ../../design/change-input-errors.h change-card-dialog.o: ../../design/delete-input-error.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/label.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/font-by-name.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h change-card-dialog.o: ../../design/rolodex-menu-ui.h change-card-dialog.o: ../../design/add-card-dialog.h change-card-dialog.o: ../../design/add-card-buttons.h change-card-dialog.o: ../../design/confirm-change-dialog.h change-card-dialog.o: ../../design/confirm-delete-dialog.h change-card-dialog.o: ../../design/delete-card-dialog.h change-card-dialog.o: ../../design/error-message-dialog.h change-card-dialog.o: ../../design/read-only-str-editor.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h change-card-dialog.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h change-card-dialog.o: /usr/include/sys/machtypes.h change-card-dialog.o: /usr/include/sys/int_types.h change-card-dialog.o: /usr/include/sys/select.h /usr/include/sys/time.h change-card-dialog.o: /usr/include/sys/time.h change-card-dialog.o: ../../design/find-card-dialog.h change-card-dialog.o: ../../design/found-cards-dialog.h change-card-dialog.o: ../../design/found-cards-buttons.h change-card-dialog.o: ../../design/no-found-cards-dialog.h change-card-dialog.o: ../../design/rolodex-ui.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h change-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h change-card-dialog.o: /usr/include/stdlib.h change-input-errors.o: ../../design/change-input-errors.h change-input-errors.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h change-input-errors.o: /usr/include/setjmp.h change-input-errors.o: /usr/include/sys/feature_tests.h change-input-errors.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h change-input-errors.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h change-input-errors.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h compile-stub.o: ../../design/add-card-buttons.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h compile-stub.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h compile-stub.o: ../../design/add-card-dialog.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h compile-stub.o: ../../design/add-input-errors.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h compile-stub.o: ../../design/basic-types.h ../../design/card-list.h compile-stub.o: ../../design/card.h ../../design/change-card-dialog.h compile-stub.o: ../../design/rolodex.h ../../design/change-input-errors.h compile-stub.o: ../../design/delete-input-error.h compile-stub.o: ../../design/confirm-change-dialog.h compile-stub.o: ../../design/confirm-delete-dialog.h compile-stub.o: ../../design/delete-card-dialog.h ../../design/edit-menu.h compile-stub.o: ../../design/edit.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h compile-stub.o: ../../design/error-message-dialog.h compile-stub.o: ../../design/read-only-str-editor.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h compile-stub.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h compile-stub.o: /usr/include/sys/machtypes.h /usr/include/sys/int_types.h compile-stub.o: /usr/include/sys/select.h /usr/include/sys/time.h compile-stub.o: /usr/include/sys/time.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h compile-stub.o: ../../design/file-menu.h ../../design/file.h compile-stub.o: ../../design/find-card-dialog.h compile-stub.o: ../../design/found-cards-dialog.h compile-stub.o: ../../design/found-cards-buttons.h compile-stub.o: ../../design/help-index.h ../../design/help.h compile-stub.o: ../../design/short-help-db.h compile-stub.o: ../../design/short-help-list.h compile-stub.o: ../../design/rolodex-button-ui.h compile-stub.o: ../../design/rolodex-menu-ui.h compile-stub.o: ../../design/no-found-cards-dialog.h compile-stub.o: ../../design/rolodex-ui.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h compile-stub.o: ../../design/rolodex-menu.h ../../design/rolodex-tool.h compile-stub.o: ../../design/white-background-tray.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h compile-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h confirm-change-dialog.o: ../../design/confirm-change-dialog.h confirm-change-dialog.o: ../../design/rolodex.h confirm-change-dialog.o: ../../design/add-input-errors.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h confirm-change-dialog.o: /usr/include/setjmp.h confirm-change-dialog.o: /usr/include/sys/feature_tests.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h confirm-change-dialog.o: ../../design/basic-types.h confirm-change-dialog.o: ../../design/card-list.h ../../design/card.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h confirm-change-dialog.o: ../../design/change-input-errors.h confirm-change-dialog.o: ../../design/delete-input-error.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h confirm-change-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h confirm-delete-dialog.o: ../../design/confirm-delete-dialog.h confirm-delete-dialog.o: ../../design/rolodex.h confirm-delete-dialog.o: ../../design/add-input-errors.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h confirm-delete-dialog.o: /usr/include/setjmp.h confirm-delete-dialog.o: /usr/include/sys/feature_tests.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h confirm-delete-dialog.o: ../../design/basic-types.h confirm-delete-dialog.o: ../../design/card-list.h ../../design/card.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h confirm-delete-dialog.o: ../../design/change-input-errors.h confirm-delete-dialog.o: ../../design/delete-input-error.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h confirm-delete-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h delete-card-dialog-too-error-smart.o: ../../design/delete-card-dialog.h delete-card-dialog-too-error-smart.o: ../../design/rolodex.h delete-card-dialog-too-error-smart.o: ../../design/add-input-errors.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h delete-card-dialog-too-error-smart.o: /usr/include/setjmp.h delete-card-dialog-too-error-smart.o: /usr/include/sys/feature_tests.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h delete-card-dialog-too-error-smart.o: ../../design/basic-types.h delete-card-dialog-too-error-smart.o: ../../design/card-list.h delete-card-dialog-too-error-smart.o: ../../design/card.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h delete-card-dialog-too-error-smart.o: ../../design/change-input-errors.h delete-card-dialog-too-error-smart.o: ../../design/delete-input-error.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/label.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/font-by-name.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h delete-card-dialog-too-error-smart.o: ../../design/rolodex-menu-ui.h delete-card-dialog-too-error-smart.o: ../../design/add-card-dialog.h delete-card-dialog-too-error-smart.o: ../../design/add-card-buttons.h delete-card-dialog-too-error-smart.o: ../../design/change-card-dialog.h delete-card-dialog-too-error-smart.o: ../../design/confirm-change-dialog.h delete-card-dialog-too-error-smart.o: ../../design/confirm-delete-dialog.h delete-card-dialog-too-error-smart.o: ../../design/error-message-dialog.h delete-card-dialog-too-error-smart.o: ../../design/read-only-str-editor.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h delete-card-dialog-too-error-smart.o: /usr/include/sys/types.h delete-card-dialog-too-error-smart.o: /usr/include/sys/isa_defs.h delete-card-dialog-too-error-smart.o: /usr/include/sys/machtypes.h delete-card-dialog-too-error-smart.o: /usr/include/sys/int_types.h delete-card-dialog-too-error-smart.o: /usr/include/sys/select.h delete-card-dialog-too-error-smart.o: /usr/include/sys/time.h delete-card-dialog-too-error-smart.o: /usr/include/sys/time.h delete-card-dialog-too-error-smart.o: ../../design/find-card-dialog.h delete-card-dialog-too-error-smart.o: ../../design/found-cards-dialog.h delete-card-dialog-too-error-smart.o: ../../design/found-cards-buttons.h delete-card-dialog-too-error-smart.o: ../../design/no-found-cards-dialog.h delete-card-dialog-too-error-smart.o: ../../design/rolodex-ui.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h delete-card-dialog-too-error-smart.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h delete-card-dialog-too-error-smart.o: /usr/include/stdlib.h delete-card-dialog.o: ../../design/delete-card-dialog.h delete-card-dialog.o: ../../design/rolodex.h delete-card-dialog.o: ../../design/add-input-errors.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h delete-card-dialog.o: /usr/include/setjmp.h delete-card-dialog.o: /usr/include/sys/feature_tests.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h delete-card-dialog.o: ../../design/basic-types.h ../../design/card-list.h delete-card-dialog.o: ../../design/card.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h delete-card-dialog.o: ../../design/change-input-errors.h delete-card-dialog.o: ../../design/delete-input-error.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/label.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/font-by-name.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h delete-card-dialog.o: ../../design/rolodex-menu-ui.h delete-card-dialog.o: ../../design/add-card-dialog.h delete-card-dialog.o: ../../design/add-card-buttons.h delete-card-dialog.o: ../../design/change-card-dialog.h delete-card-dialog.o: ../../design/confirm-change-dialog.h delete-card-dialog.o: ../../design/confirm-delete-dialog.h delete-card-dialog.o: ../../design/error-message-dialog.h delete-card-dialog.o: ../../design/read-only-str-editor.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h delete-card-dialog.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h delete-card-dialog.o: /usr/include/sys/machtypes.h delete-card-dialog.o: /usr/include/sys/int_types.h delete-card-dialog.o: /usr/include/sys/select.h /usr/include/sys/time.h delete-card-dialog.o: /usr/include/sys/time.h delete-card-dialog.o: ../../design/find-card-dialog.h delete-card-dialog.o: ../../design/found-cards-dialog.h delete-card-dialog.o: ../../design/found-cards-buttons.h delete-card-dialog.o: ../../design/no-found-cards-dialog.h delete-card-dialog.o: ../../design/rolodex-ui.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h delete-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h delete-card-dialog.o: /usr/include/stdlib.h delete-input-error.o: ../../design/delete-input-error.h delete-input-error.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h delete-input-error.o: /usr/include/setjmp.h delete-input-error.o: /usr/include/sys/feature_tests.h delete-input-error.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h edit-menu-stub.o: ../../design/edit-menu.h ../../design/edit.h edit-menu-stub.o: ../../design/basic-types.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h edit-menu-stub.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h edit-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h edit-stub.o: ../../design/edit.h ../../design/basic-types.h edit-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h edit-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h edit-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h edit-stub.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h edit-stub.o: /usr/include/stdio.h /usr/include/sys/va_list.h error-message-dialog.o: ../../design/error-message-dialog.h error-message-dialog.o: ../../design/read-only-str-editor.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h error-message-dialog.o: /usr/include/sys/types.h error-message-dialog.o: /usr/include/sys/feature_tests.h error-message-dialog.o: /usr/include/sys/isa_defs.h error-message-dialog.o: /usr/include/sys/machtypes.h error-message-dialog.o: /usr/include/sys/int_types.h error-message-dialog.o: /usr/include/sys/select.h /usr/include/sys/time.h error-message-dialog.o: /usr/include/sys/time.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h error-message-dialog.o: /usr/include/setjmp.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/label.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/font-by-name.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h error-message-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h file-menu-stub.o: ../../design/file-menu.h ../../design/file.h file-menu-stub.o: ../../design/basic-types.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h file-menu-stub.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h file-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h file-menu.o: ../../design/file-menu.h ../../design/file.h file-menu.o: ../../design/basic-types.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h file-menu.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h file-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h file-stub.o: ../../design/file.h ../../design/basic-types.h file-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h file-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h file-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h file-stub.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h file-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/quit-exception.h file-stub.o: /usr/include/stdio.h /usr/include/sys/va_list.h file.o: ../../design/file.h ../../design/basic-types.h file.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h file.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h file.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h file.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h file.o: /home/phoenix/faculty1/gfisher/projects/work/include/quit-exception.h file.o: /usr/include/stdio.h /usr/include/sys/va_list.h find-card-dialog.o: ../../design/card-list.h ../../design/card.h find-card-dialog.o: ../../design/basic-types.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h find-card-dialog.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h find-card-dialog.o: ../../design/find-card-dialog.h ../../design/rolodex.h find-card-dialog.o: ../../design/add-input-errors.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h find-card-dialog.o: ../../design/change-input-errors.h find-card-dialog.o: ../../design/delete-input-error.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/label.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/font-by-name.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h find-card-dialog.o: ../../design/rolodex-menu-ui.h find-card-dialog.o: ../../design/add-card-dialog.h find-card-dialog.o: ../../design/add-card-buttons.h find-card-dialog.o: ../../design/change-card-dialog.h find-card-dialog.o: ../../design/confirm-change-dialog.h find-card-dialog.o: ../../design/confirm-delete-dialog.h find-card-dialog.o: ../../design/delete-card-dialog.h find-card-dialog.o: ../../design/error-message-dialog.h find-card-dialog.o: ../../design/read-only-str-editor.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h find-card-dialog.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h find-card-dialog.o: /usr/include/sys/machtypes.h find-card-dialog.o: /usr/include/sys/int_types.h /usr/include/sys/select.h find-card-dialog.o: /usr/include/sys/time.h /usr/include/sys/time.h find-card-dialog.o: ../../design/found-cards-dialog.h find-card-dialog.o: ../../design/found-cards-buttons.h find-card-dialog.o: ../../design/no-found-cards-dialog.h find-card-dialog.o: ../../design/rolodex-ui.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h find-card-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h find-card-dialog.o: /usr/include/stdlib.h found-cards-buttons.o: ../../design/add-card-buttons.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h found-cards-buttons.o: /usr/include/setjmp.h found-cards-buttons.o: /usr/include/sys/feature_tests.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h found-cards-buttons.o: ../../design/add-card-dialog.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h found-cards-buttons.o: ../../design/card.h ../../design/basic-types.h found-cards-buttons.o: ../../design/rolodex-menu-ui.h found-cards-buttons.o: ../../design/change-card-dialog.h found-cards-buttons.o: ../../design/rolodex.h found-cards-buttons.o: ../../design/add-input-errors.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h found-cards-buttons.o: ../../design/card-list.h found-cards-buttons.o: ../../design/change-input-errors.h found-cards-buttons.o: ../../design/delete-input-error.h found-cards-buttons.o: ../../design/confirm-change-dialog.h found-cards-buttons.o: ../../design/confirm-delete-dialog.h found-cards-buttons.o: ../../design/delete-card-dialog.h found-cards-buttons.o: ../../design/error-message-dialog.h found-cards-buttons.o: ../../design/read-only-str-editor.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h found-cards-buttons.o: /usr/include/sys/types.h found-cards-buttons.o: /usr/include/sys/isa_defs.h found-cards-buttons.o: /usr/include/sys/machtypes.h found-cards-buttons.o: /usr/include/sys/int_types.h found-cards-buttons.o: /usr/include/sys/select.h /usr/include/sys/time.h found-cards-buttons.o: /usr/include/sys/time.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h found-cards-buttons.o: ../../design/find-card-dialog.h found-cards-buttons.o: ../../design/found-cards-dialog.h found-cards-buttons.o: ../../design/found-cards-buttons.h found-cards-buttons.o: ../../design/no-found-cards-dialog.h found-cards-buttons.o: ../../design/rolodex-ui.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h found-cards-buttons.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h found-cards-buttons.o: /usr/include/stdlib.h found-cards-dialog.o: ../../design/card-list.h ../../design/card.h found-cards-dialog.o: ../../design/basic-types.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h found-cards-dialog.o: /usr/include/setjmp.h found-cards-dialog.o: /usr/include/sys/feature_tests.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/font-by-name.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h found-cards-dialog.o: ../../design/found-cards-dialog.h found-cards-dialog.o: ../../design/found-cards-buttons.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h found-cards-dialog.o: ../../design/rolodex.h found-cards-dialog.o: ../../design/add-input-errors.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h found-cards-dialog.o: ../../design/change-input-errors.h found-cards-dialog.o: ../../design/delete-input-error.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/label.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h found-cards-dialog.o: ../../design/read-only-str-editor.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h found-cards-dialog.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h found-cards-dialog.o: /usr/include/sys/machtypes.h found-cards-dialog.o: /usr/include/sys/int_types.h found-cards-dialog.o: /usr/include/sys/select.h /usr/include/sys/time.h found-cards-dialog.o: /usr/include/sys/time.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h found-cards-dialog.o: /usr/include/math.h /usr/include/stdio.h found-cards-dialog.o: /usr/include/sys/va_list.h help-index.o: ../../design/help-index.h help-index.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h help-index.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h help-index.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h help.o: ../../design/help.h ../../design/help-index.h help.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h help.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h help.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h help.o: ../../design/short-help-db.h ../../design/short-help-list.h help.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h help.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/quit-exception.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h main-stub.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h main-stub.o: ../../design/rolodex-menu-ui.h ../../design/add-card-dialog.h main-stub.o: ../../design/add-card-buttons.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h main-stub.o: ../../design/change-card-dialog.h ../../design/rolodex.h main-stub.o: ../../design/add-input-errors.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h main-stub.o: ../../design/basic-types.h ../../design/card-list.h main-stub.o: ../../design/card.h ../../design/change-input-errors.h main-stub.o: ../../design/delete-input-error.h main-stub.o: ../../design/confirm-change-dialog.h main-stub.o: ../../design/confirm-delete-dialog.h main-stub.o: ../../design/delete-card-dialog.h main-stub.o: ../../design/error-message-dialog.h main-stub.o: ../../design/read-only-str-editor.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h main-stub.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h main-stub.o: /usr/include/sys/machtypes.h /usr/include/sys/int_types.h main-stub.o: /usr/include/sys/select.h /usr/include/sys/time.h main-stub.o: /usr/include/sys/time.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h main-stub.o: ../../design/find-card-dialog.h main-stub.o: ../../design/found-cards-dialog.h main-stub.o: ../../design/found-cards-buttons.h main-stub.o: ../../design/no-found-cards-dialog.h main-stub.o: ../../design/rolodex-ui.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h main-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h main-stub.o: ../../design/rolodex-tool.h ../../design/edit.h main-stub.o: ../../design/file.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/quit-exception.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h main.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h main.o: ../../design/rolodex-menu-ui.h ../../design/add-card-dialog.h main.o: ../../design/add-card-buttons.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h main.o: ../../design/change-card-dialog.h ../../design/rolodex.h main.o: ../../design/add-input-errors.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h main.o: ../../design/basic-types.h ../../design/card-list.h main.o: ../../design/card.h ../../design/change-input-errors.h main.o: ../../design/delete-input-error.h main.o: ../../design/confirm-change-dialog.h main.o: ../../design/confirm-delete-dialog.h main.o: ../../design/delete-card-dialog.h main.o: ../../design/error-message-dialog.h main.o: ../../design/read-only-str-editor.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h main.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h main.o: /usr/include/sys/machtypes.h /usr/include/sys/int_types.h main.o: /usr/include/sys/select.h /usr/include/sys/time.h main.o: /usr/include/sys/time.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h main.o: ../../design/find-card-dialog.h ../../design/found-cards-dialog.h main.o: ../../design/found-cards-buttons.h main.o: ../../design/no-found-cards-dialog.h ../../design/rolodex-ui.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h main.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h main.o: ../../design/rolodex-tool.h ../../design/edit.h main.o: ../../design/file.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/label.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/font-by-name.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h no-found-cards-dialog.o: ../../design/no-found-cards-dialog.h no-found-cards-dialog.o: ../../design/read-only-str-editor.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h no-found-cards-dialog.o: /usr/include/sys/types.h no-found-cards-dialog.o: /usr/include/sys/feature_tests.h no-found-cards-dialog.o: /usr/include/sys/isa_defs.h no-found-cards-dialog.o: /usr/include/sys/machtypes.h no-found-cards-dialog.o: /usr/include/sys/int_types.h no-found-cards-dialog.o: /usr/include/sys/select.h /usr/include/sys/time.h no-found-cards-dialog.o: /usr/include/sys/time.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h no-found-cards-dialog.o: /usr/include/setjmp.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h no-found-cards-dialog.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h read-only-str-editor.o: ../../design/read-only-str-editor.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h read-only-str-editor.o: /usr/include/sys/types.h read-only-str-editor.o: /usr/include/sys/feature_tests.h read-only-str-editor.o: /usr/include/sys/isa_defs.h read-only-str-editor.o: /usr/include/sys/machtypes.h read-only-str-editor.o: /usr/include/sys/int_types.h read-only-str-editor.o: /usr/include/sys/select.h /usr/include/sys/time.h read-only-str-editor.o: /usr/include/sys/time.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/painter.h read-only-str-editor.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/sensor.h rolodex-array.o: ../../design/rolodex.h ../../design/add-input-errors.h rolodex-array.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-array.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h rolodex-array.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-array.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-array.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-array.o: ../../design/basic-types.h ../../design/card-list.h rolodex-array.o: ../../design/card.h rolodex-array.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-array.o: ../../design/change-input-errors.h rolodex-array.o: ../../design/delete-input-error.h rolodex-button-ui.o: ../../design/edit-menu.h ../../design/edit.h rolodex-button-ui.o: ../../design/basic-types.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-button-ui.o: /usr/include/setjmp.h rolodex-button-ui.o: /usr/include/sys/feature_tests.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h rolodex-button-ui.o: ../../design/file-menu.h ../../design/file.h rolodex-button-ui.o: ../../design/rolodex-menu-ui.h rolodex-button-ui.o: ../../design/add-card-dialog.h rolodex-button-ui.o: ../../design/add-card-buttons.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h rolodex-button-ui.o: ../../design/change-card-dialog.h rolodex-button-ui.o: ../../design/rolodex.h rolodex-button-ui.o: ../../design/add-input-errors.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-button-ui.o: ../../design/card-list.h ../../design/card.h rolodex-button-ui.o: ../../design/change-input-errors.h rolodex-button-ui.o: ../../design/delete-input-error.h rolodex-button-ui.o: ../../design/confirm-change-dialog.h rolodex-button-ui.o: ../../design/confirm-delete-dialog.h rolodex-button-ui.o: ../../design/delete-card-dialog.h rolodex-button-ui.o: ../../design/error-message-dialog.h rolodex-button-ui.o: ../../design/read-only-str-editor.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h rolodex-button-ui.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h rolodex-button-ui.o: /usr/include/sys/machtypes.h rolodex-button-ui.o: /usr/include/sys/int_types.h rolodex-button-ui.o: /usr/include/sys/select.h /usr/include/sys/time.h rolodex-button-ui.o: /usr/include/sys/time.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h rolodex-button-ui.o: ../../design/find-card-dialog.h rolodex-button-ui.o: ../../design/found-cards-dialog.h rolodex-button-ui.o: ../../design/found-cards-buttons.h rolodex-button-ui.o: ../../design/no-found-cards-dialog.h rolodex-button-ui.o: ../../design/rolodex-ui.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h rolodex-button-ui.o: ../../design/rolodex-menu.h rolodex-button-ui.o: ../../design/rolodex-tool.h rolodex-button-ui.o: ../../design/white-background-tray.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/border.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h rolodex-button-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h rolodex-menu-stub.o: ../../design/rolodex-menu.h ../../design/rolodex.h rolodex-menu-stub.o: ../../design/add-input-errors.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-menu-stub.o: /usr/include/setjmp.h rolodex-menu-stub.o: /usr/include/sys/feature_tests.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-menu-stub.o: ../../design/basic-types.h ../../design/card-list.h rolodex-menu-stub.o: ../../design/card.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-menu-stub.o: ../../design/change-input-errors.h rolodex-menu-stub.o: ../../design/delete-input-error.h rolodex-menu-stub.o: ../../design/rolodex-menu-ui.h rolodex-menu-stub.o: ../../design/add-card-dialog.h rolodex-menu-stub.o: ../../design/add-card-buttons.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h rolodex-menu-stub.o: ../../design/change-card-dialog.h rolodex-menu-stub.o: ../../design/confirm-change-dialog.h rolodex-menu-stub.o: ../../design/confirm-delete-dialog.h rolodex-menu-stub.o: ../../design/delete-card-dialog.h rolodex-menu-stub.o: ../../design/error-message-dialog.h rolodex-menu-stub.o: ../../design/read-only-str-editor.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h rolodex-menu-stub.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h rolodex-menu-stub.o: /usr/include/sys/machtypes.h rolodex-menu-stub.o: /usr/include/sys/int_types.h rolodex-menu-stub.o: /usr/include/sys/select.h /usr/include/sys/time.h rolodex-menu-stub.o: /usr/include/sys/time.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h rolodex-menu-stub.o: ../../design/find-card-dialog.h rolodex-menu-stub.o: ../../design/found-cards-dialog.h rolodex-menu-stub.o: ../../design/found-cards-buttons.h rolodex-menu-stub.o: ../../design/no-found-cards-dialog.h rolodex-menu-stub.o: ../../design/rolodex-ui.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h rolodex-menu-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h rolodex-menu-ui-stub-sav.o: ../../design/edit-menu.h ../../design/edit.h rolodex-menu-ui-stub-sav.o: ../../design/basic-types.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-menu-ui-stub-sav.o: /usr/include/setjmp.h rolodex-menu-ui-stub-sav.o: /usr/include/sys/feature_tests.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h rolodex-menu-ui-stub-sav.o: ../../design/file-menu.h ../../design/file.h rolodex-menu-ui-stub-sav.o: ../../design/rolodex-menu-ui.h rolodex-menu-ui-stub-sav.o: ../../design/add-card-dialog.h rolodex-menu-ui-stub-sav.o: ../../design/add-card-buttons.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h rolodex-menu-ui-stub-sav.o: ../../design/change-card-dialog.h rolodex-menu-ui-stub-sav.o: ../../design/rolodex.h rolodex-menu-ui-stub-sav.o: ../../design/add-input-errors.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-menu-ui-stub-sav.o: ../../design/card-list.h ../../design/card.h rolodex-menu-ui-stub-sav.o: ../../design/change-input-errors.h rolodex-menu-ui-stub-sav.o: ../../design/delete-input-error.h rolodex-menu-ui-stub-sav.o: ../../design/confirm-change-dialog.h rolodex-menu-ui-stub-sav.o: ../../design/confirm-delete-dialog.h rolodex-menu-ui-stub-sav.o: ../../design/delete-card-dialog.h rolodex-menu-ui-stub-sav.o: ../../design/error-message-dialog.h rolodex-menu-ui-stub-sav.o: ../../design/read-only-str-editor.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h rolodex-menu-ui-stub-sav.o: /usr/include/sys/types.h rolodex-menu-ui-stub-sav.o: /usr/include/sys/isa_defs.h rolodex-menu-ui-stub-sav.o: /usr/include/sys/machtypes.h rolodex-menu-ui-stub-sav.o: /usr/include/sys/int_types.h rolodex-menu-ui-stub-sav.o: /usr/include/sys/select.h rolodex-menu-ui-stub-sav.o: /usr/include/sys/time.h rolodex-menu-ui-stub-sav.o: /usr/include/sys/time.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h rolodex-menu-ui-stub-sav.o: ../../design/find-card-dialog.h rolodex-menu-ui-stub-sav.o: ../../design/found-cards-dialog.h rolodex-menu-ui-stub-sav.o: ../../design/found-cards-buttons.h rolodex-menu-ui-stub-sav.o: ../../design/no-found-cards-dialog.h rolodex-menu-ui-stub-sav.o: ../../design/rolodex-ui.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h rolodex-menu-ui-stub-sav.o: ../../design/rolodex-menu.h rolodex-menu-ui-stub-sav.o: ../../design/rolodex-tool.h rolodex-menu-ui-stub-sav.o: ../../design/white-background-tray.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/border.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h rolodex-menu-ui-stub-sav.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h rolodex-menu-ui-stub.o: ../../design/edit-menu.h ../../design/edit.h rolodex-menu-ui-stub.o: ../../design/basic-types.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-menu-ui-stub.o: /usr/include/setjmp.h rolodex-menu-ui-stub.o: /usr/include/sys/feature_tests.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h rolodex-menu-ui-stub.o: ../../design/file-menu.h ../../design/file.h rolodex-menu-ui-stub.o: ../../design/rolodex-menu-ui.h rolodex-menu-ui-stub.o: ../../design/add-card-dialog.h rolodex-menu-ui-stub.o: ../../design/add-card-buttons.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h rolodex-menu-ui-stub.o: ../../design/change-card-dialog.h rolodex-menu-ui-stub.o: ../../design/rolodex.h rolodex-menu-ui-stub.o: ../../design/add-input-errors.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-menu-ui-stub.o: ../../design/card-list.h ../../design/card.h rolodex-menu-ui-stub.o: ../../design/change-input-errors.h rolodex-menu-ui-stub.o: ../../design/delete-input-error.h rolodex-menu-ui-stub.o: ../../design/confirm-change-dialog.h rolodex-menu-ui-stub.o: ../../design/confirm-delete-dialog.h rolodex-menu-ui-stub.o: ../../design/delete-card-dialog.h rolodex-menu-ui-stub.o: ../../design/error-message-dialog.h rolodex-menu-ui-stub.o: ../../design/read-only-str-editor.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h rolodex-menu-ui-stub.o: /usr/include/sys/types.h rolodex-menu-ui-stub.o: /usr/include/sys/isa_defs.h rolodex-menu-ui-stub.o: /usr/include/sys/machtypes.h rolodex-menu-ui-stub.o: /usr/include/sys/int_types.h rolodex-menu-ui-stub.o: /usr/include/sys/select.h /usr/include/sys/time.h rolodex-menu-ui-stub.o: /usr/include/sys/time.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h rolodex-menu-ui-stub.o: ../../design/find-card-dialog.h rolodex-menu-ui-stub.o: ../../design/found-cards-dialog.h rolodex-menu-ui-stub.o: ../../design/found-cards-buttons.h rolodex-menu-ui-stub.o: ../../design/no-found-cards-dialog.h rolodex-menu-ui-stub.o: ../../design/rolodex-ui.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h rolodex-menu-ui-stub.o: ../../design/rolodex-menu.h rolodex-menu-ui-stub.o: ../../design/rolodex-tool.h rolodex-menu-ui-stub.o: ../../design/white-background-tray.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/border.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h rolodex-menu-ui-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h rolodex-menu-ui-v2.o: ../../design/rolodex-tool.h ../../design/edit.h rolodex-menu-ui-v2.o: ../../design/basic-types.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-menu-ui-v2.o: /usr/include/setjmp.h rolodex-menu-ui-v2.o: /usr/include/sys/feature_tests.h ../../design/file.h rolodex-menu-ui-v2.o: ../../design/rolodex-ui.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-menu-ui-v2.o: ../../design/rolodex.h rolodex-menu-ui-v2.o: ../../design/add-input-errors.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-menu-ui-v2.o: ../../design/card-list.h ../../design/card.h rolodex-menu-ui-v2.o: ../../design/change-input-errors.h rolodex-menu-ui-v2.o: ../../design/delete-input-error.h rolodex-menu-ui-v2.o: ../../design/rolodex-menu-ui.h rolodex-menu-ui-v2.o: ../../design/add-card-dialog.h rolodex-menu-ui-v2.o: ../../design/add-card-buttons.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h rolodex-menu-ui-v2.o: ../../design/change-card-dialog.h rolodex-menu-ui-v2.o: ../../design/confirm-change-dialog.h rolodex-menu-ui-v2.o: ../../design/confirm-delete-dialog.h rolodex-menu-ui-v2.o: ../../design/delete-card-dialog.h rolodex-menu-ui-v2.o: ../../design/error-message-dialog.h rolodex-menu-ui-v2.o: ../../design/read-only-str-editor.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h rolodex-menu-ui-v2.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h rolodex-menu-ui-v2.o: /usr/include/sys/machtypes.h rolodex-menu-ui-v2.o: /usr/include/sys/int_types.h rolodex-menu-ui-v2.o: /usr/include/sys/select.h /usr/include/sys/time.h rolodex-menu-ui-v2.o: /usr/include/sys/time.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h rolodex-menu-ui-v2.o: ../../design/find-card-dialog.h rolodex-menu-ui-v2.o: ../../design/found-cards-dialog.h rolodex-menu-ui-v2.o: ../../design/found-cards-buttons.h rolodex-menu-ui-v2.o: ../../design/no-found-cards-dialog.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/border.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h rolodex-menu-ui-v2.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h rolodex-menu-ui.o: ../../design/edit-menu.h ../../design/edit.h rolodex-menu-ui.o: ../../design/basic-types.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-menu-ui.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h rolodex-menu-ui.o: ../../design/file-menu.h ../../design/file.h rolodex-menu-ui.o: ../../design/rolodex-menu-ui.h rolodex-menu-ui.o: ../../design/add-card-dialog.h rolodex-menu-ui.o: ../../design/add-card-buttons.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h rolodex-menu-ui.o: ../../design/change-card-dialog.h rolodex-menu-ui.o: ../../design/rolodex.h ../../design/add-input-errors.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-menu-ui.o: ../../design/card-list.h ../../design/card.h rolodex-menu-ui.o: ../../design/change-input-errors.h rolodex-menu-ui.o: ../../design/delete-input-error.h rolodex-menu-ui.o: ../../design/confirm-change-dialog.h rolodex-menu-ui.o: ../../design/confirm-delete-dialog.h rolodex-menu-ui.o: ../../design/delete-card-dialog.h rolodex-menu-ui.o: ../../design/error-message-dialog.h rolodex-menu-ui.o: ../../design/read-only-str-editor.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h rolodex-menu-ui.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h rolodex-menu-ui.o: /usr/include/sys/machtypes.h rolodex-menu-ui.o: /usr/include/sys/int_types.h /usr/include/sys/select.h rolodex-menu-ui.o: /usr/include/sys/time.h /usr/include/sys/time.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h rolodex-menu-ui.o: ../../design/find-card-dialog.h rolodex-menu-ui.o: ../../design/found-cards-dialog.h rolodex-menu-ui.o: ../../design/found-cards-buttons.h rolodex-menu-ui.o: ../../design/no-found-cards-dialog.h rolodex-menu-ui.o: ../../design/rolodex-ui.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h rolodex-menu-ui.o: ../../design/rolodex-menu.h ../../design/rolodex-tool.h rolodex-menu-ui.o: ../../design/white-background-tray.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/border.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/frame.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/glue.h rolodex-menu-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/message.h rolodex-menu.o: ../../design/rolodex-menu.h ../../design/rolodex.h rolodex-menu.o: ../../design/add-input-errors.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-menu.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-menu.o: ../../design/basic-types.h ../../design/card-list.h rolodex-menu.o: ../../design/card.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-menu.o: ../../design/change-input-errors.h rolodex-menu.o: ../../design/delete-input-error.h rolodex-menu.o: ../../design/rolodex-menu-ui.h rolodex-menu.o: ../../design/add-card-dialog.h rolodex-menu.o: ../../design/add-card-buttons.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/button.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/subject.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/box.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/streditor.h rolodex-menu.o: ../../design/change-card-dialog.h rolodex-menu.o: ../../design/confirm-change-dialog.h rolodex-menu.o: ../../design/confirm-delete-dialog.h rolodex-menu.o: ../../design/delete-card-dialog.h rolodex-menu.o: ../../design/error-message-dialog.h rolodex-menu.o: ../../design/read-only-str-editor.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/event.h rolodex-menu.o: /usr/include/sys/types.h /usr/include/sys/isa_defs.h rolodex-menu.o: /usr/include/sys/machtypes.h /usr/include/sys/int_types.h rolodex-menu.o: /usr/include/sys/select.h /usr/include/sys/time.h rolodex-menu.o: /usr/include/sys/time.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/font.h rolodex-menu.o: ../../design/find-card-dialog.h rolodex-menu.o: ../../design/found-cards-dialog.h rolodex-menu.o: ../../design/found-cards-buttons.h rolodex-menu.o: ../../design/no-found-cards-dialog.h rolodex-menu.o: ../../design/rolodex-ui.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/deck.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/menu.h rolodex-menu.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/control.h rolodex-stub.o: ../../design/rolodex.h ../../design/add-input-errors.h rolodex-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-stub.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h rolodex-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-stub.o: ../../design/basic-types.h ../../design/card-list.h rolodex-stub.o: ../../design/card.h rolodex-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-stub.o: ../../design/change-input-errors.h rolodex-stub.o: ../../design/delete-input-error.h /usr/include/stdio.h rolodex-stub.o: /usr/include/sys/va_list.h rolodex-tool-stub.o: ../../design/rolodex-tool.h ../../design/edit.h rolodex-tool-stub.o: ../../design/basic-types.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-tool-stub.o: /usr/include/setjmp.h rolodex-tool-stub.o: /usr/include/sys/feature_tests.h ../../design/file.h rolodex-tool-stub.o: ../../design/rolodex-ui.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-tool-stub.o: ../../design/rolodex.h rolodex-tool-stub.o: ../../design/add-input-errors.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-tool-stub.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-tool-stub.o: ../../design/card-list.h ../../design/card.h rolodex-tool-stub.o: ../../design/change-input-errors.h rolodex-tool-stub.o: ../../design/delete-input-error.h rolodex-tool.o: ../../design/rolodex-tool.h ../../design/edit.h rolodex-tool.o: ../../design/basic-types.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-tool.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h rolodex-tool.o: ../../design/file.h ../../design/rolodex-ui.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-tool.o: ../../design/rolodex.h ../../design/add-input-errors.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-tool.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-tool.o: ../../design/card-list.h ../../design/card.h rolodex-tool.o: ../../design/change-input-errors.h rolodex-tool.o: ../../design/delete-input-error.h rolodex-ui.o: ../../design/rolodex-tool.h ../../design/edit.h rolodex-ui.o: ../../design/basic-types.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex-ui.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h rolodex-ui.o: ../../design/file.h ../../design/rolodex-ui.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/iv-support.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/world.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/view.h rolodex-ui.o: ../../design/rolodex.h ../../design/add-input-errors.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex-ui.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex-ui.o: ../../design/card-list.h ../../design/card.h rolodex-ui.o: ../../design/change-input-errors.h rolodex-ui.o: ../../design/delete-input-error.h rolodex.o: ../../design/rolodex.h ../../design/add-input-errors.h rolodex.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h rolodex.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h rolodex.o: /home/phoenix/faculty1/gfisher/projects/work/include/str.h rolodex.o: /home/phoenix/faculty1/gfisher/projects/work/include/strlist.h rolodex.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h rolodex.o: ../../design/basic-types.h ../../design/card-list.h rolodex.o: ../../design/card.h rolodex.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h rolodex.o: ../../design/change-input-errors.h rolodex.o: ../../design/delete-input-error.h /usr/include/stdio.h rolodex.o: /usr/include/sys/va_list.h short-help-db.o: ../../design/short-help-db.h short-help-db.o: ../../design/short-help-list.h short-help-db.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h short-help-db.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h short-help-db.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h short-help-db.o: /home/phoenix/faculty1/gfisher/projects/work/include/model.h short-help-list.o: ../../design/short-help-list.h short-help-list.o: /home/phoenix/faculty1/gfisher/projects/work/include/list.h short-help-list.o: /home/phoenix/faculty1/gfisher/projects/work/include/std-macros.h short-help-list.o: /usr/include/setjmp.h /usr/include/sys/feature_tests.h white-background-tray.o: ../../design/white-background-tray.h white-background-tray.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/tray.h white-background-tray.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/scene.h white-background-tray.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/interactor.h white-background-tray.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/defs.h white-background-tray.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/shape.h white-background-tray.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/color.h white-background-tray.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/resource.h white-background-tray.o: /home/phoenix/faculty1/gfisher/projects/work/include/InterViews/painter.h