home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Examples / BPM / Makefile.preamble < prev    next >
Encoding:
Makefile  |  1995-03-16  |  4.9 KB  |  121 lines

  1. ###############################################################################
  2. #  NeXT Makefile.preamble Template
  3. #  Copyright 1993, 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, sub-project, bundle, or
  9. #  palette.  Each node in the project's tree of sub-projects and bundles 
  10. #  should have it's own Makefile.preamble and 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 here.  To change the default flags that get passed to ${CC} 
  16. ## (e.g. change -O to -O2), see Makefile.postamble.
  17.  
  18. # Flags passed to compiler (in addition to -g, -O, etc)
  19. OTHER_CFLAGS = -I../../Headers
  20. OTHER_LDFLAGS = -L../../Source -L/LocalDeveloper/Libraries
  21. BUNDLELDFLAGS =            # use iff project is a bundle
  22. PALETTELDFLAGS =           # use iff project is a palette
  23.  
  24. ## Specify which headers in this project should be published to the outside 
  25. ## world in a flat header directory given in PUBLIC_HEADER_DIR (which will be 
  26. ## prepended by DSTROOT, below.  Any subset of these public headers can be
  27. ## precompiled automatically after installation, with extra user-defined flags.
  28. PUBLIC_HEADER_DIR = 
  29. PUBLIC_HEADERS =
  30. PUBLIC_PRECOMPILED_HEADERS =
  31. PUBLIC_PRECOMPILED_HEADERS_CFLAGS =
  32.  
  33. ## Specify the deployment target for which to build this code.  Setting this to
  34. ## 3.3 will allow use of the new style shared libraries and is required for
  35. ## dynamic library projects.
  36. ## (Note: this will eventually become settable in PB, but for now, you must 
  37. ##        modify this line to get the new behavior of the compiler
  38. ##        and dynamic link editor).
  39. NEXTSTEP_DEPLOYMENT_TARGET = 3.2
  40.  
  41. ## If this is a library project, specify the type of library to build
  42. ## (either STATIC or DYNAMIC).  Note that it is an error to specify DYNAMIC
  43. ## here, but leave the NEXTSTEP_DEPLOYMENT_TARGET at 3.2 above.
  44. LIBRARY_STYLE = STATIC
  45.  
  46. ## Configure what is linked in at each level here.  Libraries are only used in
  47. ## the final 'app' linking step.  Final 'app' linking is only done via the
  48. ## 'app', 'debug', and 'profile' targets when they are invoked for
  49. ## the top-level app.
  50.  
  51. # Additional relocatables to be linked in at this level
  52. OTHER_OFILES = 
  53. # Additional libs to link apps against ('app' target)
  54. OTHER_LIBS = 
  55. # Additional libs to link apps against ('debug' target)
  56. OTHER_DEBUG_LIBS = 
  57. # Additional libs to link apps against ('profile' target)
  58. OTHER_PROF_LIBS = 
  59.  
  60. # More 'app' libraries when $(JAPANESE) = "YES"
  61. OTHER_JAPANESE_LIBS = 
  62. # More 'debug' libraries when $(JAPANESE) = "YES"
  63. OTHER_JAPANESE_DEBUG_LIBS = 
  64. # More 'profile' libs when $(JAPANESE) = "YES"
  65. OTHER_JAPANESE_PROF_LIBS = 
  66.  
  67. # If this is a bundle, and you *know* the enclosing application will not
  68. # be linking with a library which you require in your bundle code, then
  69. # mention it here so that it gets linked into the bundle.  Note that this
  70. # is wasteful but sometimes necessary.
  71. BUNDLE_LIBS = 
  72.  
  73. ## Configure how things get built here.  Additional dependencies, sourcefiles, 
  74. ## derived files, and build order should be specified here.
  75.  
  76. # Other dependencies of this project
  77. OTHER_PRODUCT_DEPENDS =    
  78. # Built *before* building subprojects/bundles
  79. OTHER_INITIAL_TARGETS = 
  80. # Other source files maintained by .pre/postamble
  81. OTHER_SOURCEFILES = 
  82. # Additional files to be removed by `make clean' 
  83. OTHER_GARBAGE = 
  84. # Precompiled headers to be built before any compilation occurs (e.g., draw.p)
  85. PRECOMPS = 
  86.  
  87. # Targets to be built before installation
  88. OTHER_INSTALL_DEPENDS =    
  89.  
  90. # A virtual root directory (other than /) to be prepended to the $(INSTALLDIR) 
  91. # passed from ProjectBuilder.
  92. DSTROOT = 
  93.  
  94. # Set the following to "YES" if you want the old behavior of recursively
  95. # cleaning all nested subprojects during 'make clean'.
  96. CLEAN_ALL_SUBPROJECTS =
  97.  
  98. ## Add more obscure source files here to cause them to be automatically 
  99. ## processed by the appropriate tool.  Note that these files should also be
  100. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  101. ## result from these files should also be added to OTHER_OFILES above so they
  102. ## will be linked in.
  103.  
  104. # .msg files that should have msgwrap run on them
  105. MSGFILES = 
  106. # .defs files that should have mig run on them
  107. DEFSFILES = 
  108. # .mig files (no .defs files) that should have mig run on them
  109. MIGFILES = 
  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. # Don't add more rules here unless you want the first one to be the default
  119. # target for make!  Put all your targets in Makefile.postamble.
  120.  
  121.