home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / Examples / NEXTIME / NullVideoCodec / Makefile.preamble < prev    next >
Encoding:
Makefile  |  1995-12-22  |  3.5 KB  |  92 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 = 
  20. # Flags passed to ld (in addition to -ObjC, etc.)
  21. OTHER_LDFLAGS =    -undefined suppress
  22.  
  23. ## Configure what is linked in at each level here.  Libraries are only used in
  24. ## the final 'app' linking step.  Final 'app' linking is only done via the
  25. ## 'app', 'debug', and 'profile' targets when they are invoked for
  26. ## the top-level app.
  27.  
  28. # Additional relocatables to be linked in at this level
  29.  
  30. ## FIXME:  in the 3.2 world we should use BUNDLE_LIBS for this
  31. OTHER_OFILES =
  32.  
  33. # Additional libs to link apps against ('app' target)
  34. OTHER_LIBS = -framework AppKit -framework Foundation -framework System
  35. # Additional libs to link apps against ('debug' target)
  36. OTHER_DEBUG_LIBS = 
  37. # Additional libs to link apps against ('profile' target)
  38. OTHER_PROF_LIBS = 
  39.  
  40. # More 'app' libraries when $(JAPANESE) = "YES"
  41. OTHER_JAPANESE_LIBS = 
  42. # More 'debug' libraries when $(JAPANESE) = "YES"
  43. OTHER_JAPANESE_DEBUG_LIBS = 
  44. # More 'profile' libs when $(JAPANESE) = "YES"
  45. OTHER_JAPANESE_PROF_LIBS = 
  46.  
  47. ## Configure how things get built here.  Additional dependencies, sourcefiles, 
  48. ## derived files, and build order should be specified here.
  49.  
  50. # Other dependencies of this project
  51. OTHER_PRODUCT_DEPENDS =    
  52. # Built *before* building subprojects/bundles
  53. OTHER_INITIAL_TARGETS = 
  54. # Other source files maintained by .pre/postamble
  55. OTHER_SOURCEFILES = 
  56. # Additional files to be removed by `make clean' 
  57. OTHER_GARBAGE = 
  58. # Precompiled headers to be built before any compilation occurs (e.g., draw.p)
  59. PRECOMPS = 
  60.  
  61. # Targets to be built before subprojects & bundles
  62. OTHER_INITIAL_TARGETS =    
  63.  
  64. # A virtual root directory (other than /) to be prepended to the $(INSTALLDIR) 
  65. # passed from ProjectBuilder.
  66. DSTROOT = 
  67.  
  68.  
  69. ## Add more obscure source files here to cause them to be automatically 
  70. ## processed by the appropriate tool.  Note that these files should also be
  71. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  72. ## result from these files should also be added to OTHER_OFILES above so they
  73. ## will be linked in.
  74.  
  75. # .msg files that should have msgwrap run on them
  76. MSGFILES = 
  77. # .defs files that should have mig run on them
  78. DEFSFILES = 
  79. # .mig files (no .defs files) that should have mig run on them
  80. MIGFILES = 
  81.  
  82. ## Add additional Help directories here (add them to the project as "Other 
  83. ## Resources" in Project Builder) so that they will be compressed into .store
  84. ## files and copied into the app wrapper.  If the help directories themselves
  85. ## need to also be in the app wrapper, then a cp command will need to be added
  86. ## in an after_install target.
  87. OTHER_HELP_DIRS = 
  88.  
  89. # Don't add more rules here unless you want the first one to be the default
  90. # target for make!  Put all your targets in Makefile.postamble.
  91.  
  92.