home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Programming / GDBbundle-1.0-MIS / src / TextEdit / GdbBundle.bproj / Makefile.preamble < prev    next >
Encoding:
Makefile  |  1997-04-01  |  5.1 KB  |  133 lines

  1. ###############################################################################
  2. #  NeXT Makefile.preamble
  3. #  Copyright 1996, NeXT Software, Inc.
  4. #
  5. #  This Makefile is used for configuring the standard app makefiles associated
  6. #  with ProjectBuilder.  
  7. #  
  8. #  Use this template to set attributes for a project.  Each node in a project
  9. #  tree of sub-projects, tools, etc. should have its own Makefile.preamble and 
  10. #  Makefile.postamble.
  11. #
  12. ###############################################################################
  13. ## Configure the flags passed to $(CC) here.  These flags will also be 
  14. ## inherited by all nested sub-projects and bundles.  Put your -I, -D, -U, and
  15. ## -L flags in ProjectBuilder's Build Options inspector if at all possible.
  16. ## To change the default flags that get passed to ${CC} 
  17. ## (e.g. change -O to -O2), see Makefile.postamble.
  18.  
  19. SKIP_EXPORTING_HEADERS = 1
  20.  
  21. # Flags passed to compiler (in addition to -g, -O, etc)
  22. OTHER_CFLAGS = -Ipccts
  23. # Flags passed to ld (in addition to -ObjC, etc.)
  24. OTHER_LDFLAGS =    
  25. # Flags passed to libtool when building libraries
  26. OTHER_LIBTOOL_FLAGS =
  27. # For ordering named sections on NEXTSTEP (see ld(1))
  28. SECTORDER_FLAGS =
  29.  
  30. # If you do not want any headers exported before compilations begin,
  31. # uncomment the following line.  This can be a big time saver.
  32. #SKIP_EXPORTING_HEADERS = YES
  33.  
  34. # Stuff related to exporting headers from this project that isn't already 
  35. # handled by PB.
  36. OTHER_PUBLIC_HEADERS =
  37. OTHER_PROJECT_HEADERS =
  38. OTHER_PRIVATE_HEADERS =
  39.  
  40. # Set these two macros if you want a precomp to be built as part of
  41. # installation. The cc -precomp will be run in the public header directory
  42. # on the specified public header files with the specified additional flags.
  43. PUBLIC_PRECOMPILED_HEADERS =
  44. PUBLIC_PRECOMPILED_HEADERS_CFLAGS =
  45.  
  46. # Set this for library projects if you want to publish header files.  If your 
  47. # app or tool project exports headers  Don't
  48. # include $(DSTROOT); this is added for you automatically.
  49. PUBLIC_HEADER_DIR =
  50. PRIVATE_HEADER_DIR =
  51.  
  52. # If, in a subproject, you want to append to the parent's PUBLIC_HEADER_DIR# 
  53. # (say, to add a subdirectory like "/sys"), you can use:
  54. PUBLIC_HEADER_DIR_SUFFIX = 
  55. PRIVATE_HEADER_DIR_SUFFIX = 
  56.  
  57. # Set this for dynamic library projects on platforms where code which references
  58. # a dynamic library must link against an import library (i.e., Windows NT)
  59. # Don't include $(DSTROOT); this is added for you automatically.
  60. IMPORT_LIBRARY_DIR = 
  61.  
  62. # Additional (non-localized) resources for this project, which can be generated
  63. OTHER_RESOURCES = 
  64.  
  65. # Uncomment this to produce a static archive-style (.a) library
  66. #LIBRARY_STYLE = STATIC
  67.  
  68. # Set this to YES if you don't want a final libtool call for a library/framework.
  69. BUILD_OFILES_LIST_ONLY = 
  70.  
  71. # Additional relocatables to be linked into this project
  72. OTHER_OFILES = GdbValueParser.o GdbValueScanner.o err.o
  73. # Additional libraries to link against
  74. OTHER_LIBS = 
  75. # To include a version string, project source must exist in a directory named 
  76. # $(NAME).%d[.%d][.%d] and the following line must be uncommented.
  77. # OTHER_GENERATED_OFILES = $(VERS_OFILE)
  78.  
  79. ## Configure how things get built here.  Additional dependencies, source files, 
  80. ## derived files, and build order should be specified here.
  81.  
  82. # Other dependencies of this project
  83. OTHER_PRODUCT_DEPENDS =    GdbValueParser.o GdbValueScanner.o
  84. # Built *before* building subprojects/bundles
  85. OTHER_INITIAL_TARGETS = 
  86. # Other source files maintained by .pre/postamble
  87. OTHER_SOURCEFILES = GdbValue.g
  88. # Additional files to be removed by `make clean' 
  89. OTHER_GARBAGE = 
  90.  
  91. # Targets to build before installation
  92. OTHER_INSTALL_DEPENDS =    
  93.  
  94. # More obscure flags you might want to set for pswrap, yacc, lex, etc.
  95. PSWFLAGS = 
  96. YFLAGS = 
  97. LFLAGS = 
  98.  
  99. ## Delete this line if you want fast and loose cleans that will not remove 
  100. ## things like precomps and user-defined OTHER_GARBAGE in subprojects.
  101. CLEAN_ALL_SUBPROJECTS = YES
  102.  
  103. ## Add more obscure source files here to cause them to be automatically 
  104. ## processed by the appropriate tool.  Note that these files should also be
  105. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  106. ## result from these files should also be added to OTHER_OFILES above so they
  107. ## will be linked in.
  108.  
  109. # .msg files that should have msgwrap run on them
  110. MSGFILES = 
  111. # .defs files that should have mig run on them
  112. DEFSFILES = 
  113. # .mig files (no .defs files) that should have mig run on them
  114. MIGFILES = 
  115. # .x files that should have rpcgen run on them
  116. RPCFILES =
  117.  
  118. ## Add additional Help directories here (add them to the project as "Other 
  119. ## Resources" in Project Builder) so that they will be compressed into .store
  120. ## files and copied into the app wrapper.  If the help directories themselves
  121. ## need to also be in the app wrapper, then a cp command will need to be added
  122. ## in an after_install target.
  123. OTHER_HELP_DIRS = 
  124.  
  125. # After you have saved your project using the 4.0 PB, you will automatically 
  126. # start using the makefiles in /NextDeveloper/Makefiles/project.  If you should 
  127. # need to revert back to the old 3.3 Makefile behavior, override MAKEFILEDIR to
  128. # be /NextDeveloper/Makefiles/app.
  129.  
  130. # Don't add more rules here unless you want the first one to be the default
  131. # target for make!  Put all your targets in Makefile.postamble.
  132.  
  133.