#### # # Makefile for building local interviews library services. # # # # Object files # OBJS = \ bitmap-push-button.o \ font-by-name.o \ full-text-editor.o \ label.o \ quit-button.o \ simple-dialog.o \ # # RAelative paths to design and implementation directories. # DESIGN_DIR = ../../../design/Local IMPLE_DIR = ../../Local # # Source files for dependency generation. # DEPEND_SRCS = $(IMPLE_DIR)/*.C # # Platform type # PLATFORM = SUN4T # # Paths to relevant Fisher project directories # RELEASE = work PROJECTS_DIR = /users/gfisher/$(RELEASE) PROJECTS_INCLUDE_DIR = $(PROJECTS_DIR)/include PROJECTS_LIB_DIR = $(PROJECTS_DIR)/lib/$(PLATFORM) SUPPORT_DOC_DIR = $(PROJECTS_DIR)/support/documentation # # Paths to the relevant directories of the InterViews GUI toolkit # IV_DIR = $(PROJECTS_DIR)/interviews IV_INCLUDE_DIR = $(IV_DIR)/design IV_LIB_DIR = $(IV_DIR)/implementation/libInterViews/$(PLATFORM) IV_LIB_GRAPHICS_DIR = $(IV_DIR)/implementation/libgraphic/$(PLATFORM) # # InterViews libraries; the _g version is compiled with debugging on, so that # GUI library functions can be traced if necessary. # IV_LIBS = $(IV_LIB_DIR)/libInterViewsX11.a $(IV_LIB_DIR)/libgraphic.a IV_LIBS_g = $(IV_LIB_DIR)/libInterViewsX11-g.a \ $(IV_LIB_DIR)/libgraphic-g.a # # X Windows and other system libraries. # X_LIB = -lX11 # X Windows lib OTHER_LIBS = -lsupport \ -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_FLAGS = -c -g \ -I$(DESIGN_DIR) -I$(PROJECTS_INCLUDE_DIR) -I$(IV_INCLUDE_DIR) \ -Dgcc_2_6_3 # # Change this default make as appropriate. # default: libiv-local.a libiv-local.a: $(OBJS) rm -rf $@ ar cq $@ $(OBJS) # ranlib n'exist plus in Solaris # ranlib $@ # # Build the design only, which means just compile the .h files, all of which # are included in compile-stub.C. # design: $(CC) $(CFLAGS) $(DESIGN_DIR)/compile-stub.C # # Generic pattern rull to make all of the implemenation files. # %.o: $(IMPLE_DIR)/%.C $(CC) $(CFLAGS) $< %.E: $(IMPLE_DIR)/%.C $(CC) -E $(CFLAGS) $< > $*.E # # Generic pattern rule to make the temporary MVP support files. # %.o: $(ENCHILADA_IMPLE_TOP_LEVEL_DIR)/%.C $(CC) $(CFLAGS) $< clean: rm -f *.o *.a depend: $(DEPEND_SRCS) makedepend $(DEPEND_FLAGS) $(DEPEND_SRCS) $? 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 \ ../support/documentation/formatted-code \ support/design \ view.h model.h" # DO NOT DELETE THIS LINE -- make depend depends on it. ../../Local/bitmap-push-button.o: ../../../design/Local/bitmap-push-button.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/button.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/subject.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/bitmap.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/painter.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/shape.h ../../Local/font-by-name.o: /users/gfisher/work/include/std-macros.h ../../Local/font-by-name.o: /usr/include/setjmp.h ../../Local/font-by-name.o: /usr/include/sys/feature_tests.h ../../Local/font-by-name.o: /usr/include/sys/isa_defs.h ../../Local/font-by-name.o: ../../../design/Local/font-by-name.h ../../Local/font-by-name.o: /users/gfisher/work/include/InterViews/font.h ../../Local/font-by-name.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/font-by-name.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/font-by-name.o: /usr/include/stdio.h /usr/include/sys/va_list.h ../../Local/font-by-name.o: /usr/include/stdio_tag.h ../../Local/font-by-name.o: /usr/include/stdio_impl.h ../../Local/full-text-editor.o: ../../../design/Local/full-text-editor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/std-macros.h ../../Local/full-text-editor.o: /usr/include/setjmp.h ../../Local/full-text-editor.o: /usr/include/sys/feature_tests.h ../../Local/full-text-editor.o: /usr/include/sys/isa_defs.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/adjuster.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/border.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/box.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/scene.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/button.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/subject.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/glue.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/shape.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/regexp.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/painter.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/scroller.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/sensor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/event.h ../../Local/full-text-editor.o: /usr/include/sys/types.h ../../Local/full-text-editor.o: /usr/include/sys/machtypes.h ../../Local/full-text-editor.o: /usr/include/sys/int_types.h ../../Local/full-text-editor.o: /usr/include/sys/select.h ../../Local/full-text-editor.o: /usr/include/sys/time.h ../../Local/full-text-editor.o: /usr/include/sys/time.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/streditor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/textbuffer.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/texteditor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/textdisplay.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/world.h ../../Local/full-text-editor.o: /usr/include/ctype.h /usr/include/stdio.h ../../Local/full-text-editor.o: /usr/include/sys/va_list.h ../../Local/full-text-editor.o: /usr/include/stdio_tag.h ../../Local/full-text-editor.o: /usr/include/stdio_impl.h ../../Local/full-text-editor.o: /usr/include/stdlib.h /usr/include/string.h ../../Local/full-text-editor.o: /usr/include/sys/stat.h ../../Local/full-text-editor.o: /usr/include/sys/time_impl.h ../../Local/label.o: /usr/include/stdio.h /usr/include/sys/feature_tests.h ../../Local/label.o: /usr/include/sys/isa_defs.h /usr/include/sys/va_list.h ../../Local/label.o: /usr/include/stdio_tag.h /usr/include/stdio_impl.h ../../Local/label.o: ../../../design/Local/label.h ../../Local/label.o: ../../../design/Local/font-by-name.h ../../Local/label.o: /users/gfisher/work/include/InterViews/font.h ../../Local/label.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/label.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/label.o: /users/gfisher/work/include/InterViews/message.h ../../Local/label.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/label.o: /users/gfisher/work/include/InterViews/painter.h ../../Local/quit-button.o: ../../../design/Local/quit-button.h ../../Local/quit-button.o: /users/gfisher/work/include/std-macros.h ../../Local/quit-button.o: /usr/include/setjmp.h ../../Local/quit-button.o: /usr/include/sys/feature_tests.h ../../Local/quit-button.o: /usr/include/sys/isa_defs.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/button.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/subject.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/font.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/painter.h ../../Local/simple-dialog.o: ../../../design/Local/simple-dialog.h ../../Local/simple-dialog.o: /users/gfisher/work/include/std-macros.h ../../Local/simple-dialog.o: /usr/include/setjmp.h ../../Local/simple-dialog.o: /usr/include/sys/feature_tests.h ../../Local/simple-dialog.o: /usr/include/sys/isa_defs.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/box.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/scene.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/dialog.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/font.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/simple-dialog.o: ../../../design/Local/quit-button.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/button.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/subject.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/glue.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/shape.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/world.h ../../Local/bitmap-push-button.o: ../../../design/Local/bitmap-push-button.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/button.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/subject.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/bitmap.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/painter.h ../../Local/bitmap-push-button.o: /users/gfisher/work/include/InterViews/shape.h ../../Local/font-by-name.o: /users/gfisher/work/include/std-macros.h ../../Local/font-by-name.o: /usr/include/setjmp.h ../../Local/font-by-name.o: /usr/include/sys/feature_tests.h ../../Local/font-by-name.o: /usr/include/sys/isa_defs.h ../../Local/font-by-name.o: ../../../design/Local/font-by-name.h ../../Local/font-by-name.o: /users/gfisher/work/include/InterViews/font.h ../../Local/font-by-name.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/font-by-name.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/font-by-name.o: /usr/include/stdio.h /usr/include/sys/va_list.h ../../Local/font-by-name.o: /usr/include/stdio_tag.h ../../Local/font-by-name.o: /usr/include/stdio_impl.h ../../Local/full-text-editor.o: ../../../design/Local/full-text-editor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/std-macros.h ../../Local/full-text-editor.o: /usr/include/setjmp.h ../../Local/full-text-editor.o: /usr/include/sys/feature_tests.h ../../Local/full-text-editor.o: /usr/include/sys/isa_defs.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/adjuster.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/border.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/box.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/scene.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/button.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/subject.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/glue.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/shape.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/regexp.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/painter.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/scroller.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/sensor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/event.h ../../Local/full-text-editor.o: /usr/include/sys/types.h ../../Local/full-text-editor.o: /usr/include/sys/machtypes.h ../../Local/full-text-editor.o: /usr/include/sys/int_types.h ../../Local/full-text-editor.o: /usr/include/sys/select.h ../../Local/full-text-editor.o: /usr/include/sys/time.h ../../Local/full-text-editor.o: /usr/include/sys/time.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/streditor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/textbuffer.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/texteditor.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/textdisplay.h ../../Local/full-text-editor.o: /users/gfisher/work/include/InterViews/world.h ../../Local/full-text-editor.o: /usr/include/ctype.h /usr/include/stdio.h ../../Local/full-text-editor.o: /usr/include/sys/va_list.h ../../Local/full-text-editor.o: /usr/include/stdio_tag.h ../../Local/full-text-editor.o: /usr/include/stdio_impl.h ../../Local/full-text-editor.o: /usr/include/stdlib.h /usr/include/string.h ../../Local/full-text-editor.o: /usr/include/sys/stat.h ../../Local/full-text-editor.o: /usr/include/sys/time_impl.h ../../Local/label.o: /usr/include/stdio.h /usr/include/sys/feature_tests.h ../../Local/label.o: /usr/include/sys/isa_defs.h /usr/include/sys/va_list.h ../../Local/label.o: /usr/include/stdio_tag.h /usr/include/stdio_impl.h ../../Local/label.o: ../../../design/Local/label.h ../../Local/label.o: ../../../design/Local/font-by-name.h ../../Local/label.o: /users/gfisher/work/include/InterViews/font.h ../../Local/label.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/label.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/label.o: /users/gfisher/work/include/InterViews/message.h ../../Local/label.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/label.o: /users/gfisher/work/include/InterViews/painter.h ../../Local/quit-button.o: ../../../design/Local/quit-button.h ../../Local/quit-button.o: /users/gfisher/work/include/std-macros.h ../../Local/quit-button.o: /usr/include/setjmp.h ../../Local/quit-button.o: /usr/include/sys/feature_tests.h ../../Local/quit-button.o: /usr/include/sys/isa_defs.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/button.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/subject.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/font.h ../../Local/quit-button.o: /users/gfisher/work/include/InterViews/painter.h ../../Local/simple-dialog.o: ../../../design/Local/simple-dialog.h ../../Local/simple-dialog.o: /users/gfisher/work/include/std-macros.h ../../Local/simple-dialog.o: /usr/include/setjmp.h ../../Local/simple-dialog.o: /usr/include/sys/feature_tests.h ../../Local/simple-dialog.o: /usr/include/sys/isa_defs.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/box.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/scene.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/interactor.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/defs.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/dialog.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/font.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/resource.h ../../Local/simple-dialog.o: ../../../design/Local/quit-button.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/button.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/subject.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/glue.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/shape.h ../../Local/simple-dialog.o: /users/gfisher/work/include/InterViews/world.h