home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / Foundation / MultiThreadedDO / Makefile.preamble < prev    next >
Makefile  |  1996-04-12  |  5KB  |  126 lines

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