home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / NEXTIME / SimplePlayer / Makefile.preamble < prev    next >
Makefile  |  1995-06-23  |  4KB  |  103 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 its 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 = -no-precomp
  20. # Flags passed to ld (in addition to -ObjC, etc.)
  21. OTHER_LDFLAGS =    
  22. # Flags passed to libtool when building libraries
  23. OTHER_LIBTOOL_FLAGS =
  24.  
  25. # Stuff related to exporting headers from this project that isn't already 
  26. # handled by PB.
  27. OTHER_PUBLIC_HEADERS =
  28. OTHER_PROJECT_HEADERS =
  29. OTHER_PRIVATE_HEADERS =
  30.  
  31. # Set all three of these if you want a precomp to be built as part of
  32. # installation.  The cc -precomp will be run in the specified dir on the
  33. # specified public header files with the specified additional flags.  Don't put
  34. # $(DSTROOT) in PUBLIC_HEADER_DIR; this is done for you.
  35. PUBLIC_HEADER_DIR = 
  36. PUBLIC_PRECOMPILED_HEADERS =
  37. PUBLIC_PRECOMPILED_HEADERS_CFLAGS =
  38.  
  39. # Set this to YES if you don't want a final libtool call for a library/framework.
  40. BUILD_OFILES_LIST_ONLY = 
  41.  
  42. # Additional relocatables to be linked into this project
  43. OTHER_OFILES = 
  44. # Additional libs to link against
  45. OTHER_LIBS = 
  46. # Additional libs to link against when $(JAPANESE) = "YES"
  47. OTHER_JAPANESE_LIBS = 
  48. # To include a version string, project source must exist in a directory named 
  49. # $(NAME).%d[.%d][.%d] and the following line must be uncommented.
  50. # OTHER_GENERATED_OFILES = $(VERS_OFILE)
  51.  
  52. ## Configure how things get built here.  Additional dependencies, source files, 
  53. ## derived files, and build order should be specified here.
  54.  
  55. # Other dependencies of this project
  56. OTHER_PRODUCT_DEPENDS =    
  57. # Built *before* building subprojects/bundles
  58. OTHER_INITIAL_TARGETS = 
  59. # Other source files maintained by .pre/postamble
  60. OTHER_SOURCEFILES = 
  61. # Additional files to be removed by `make clean' 
  62. OTHER_GARBAGE = 
  63.  
  64. # Targets to build before installation
  65. OTHER_INSTALL_DEPENDS =    
  66.  
  67. # A virtual root directory (other than /) to be prepended to the $(INSTALLDIR) 
  68. # passed from ProjectBuilder.
  69. DSTROOT = 
  70.  
  71. # More obscure flags you might want to set for pswrap, yacc, lex, etc.
  72. PSWFLAGS = 
  73. YFLAGS = 
  74. LFLAGS = 
  75.  
  76. ## Delete this line if you want fast and loose cleans that will not remove 
  77. ## things like precomps and user-defined OTHER_GARBAGE in subprojects.
  78. CLEAN_ALL_SUBPROJECTS = YES
  79.  
  80. ## Add more obscure source files here to cause them to be automatically 
  81. ## processed by the appropriate tool.  Note that these files should also be
  82. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  83. ## result from these files should also be added to OTHER_OFILES above so they
  84. ## will be linked in.
  85.  
  86. # .msg files that should have msgwrap run on them
  87. MSGFILES = 
  88. # .defs files that should have mig run on them
  89. DEFSFILES = 
  90. # .mig files (no .defs files) that should have mig run on them
  91. MIGFILES = 
  92.  
  93. ## Add additional Help directories here (add them to the project as "Other 
  94. ## Resources" in Project Builder) so that they will be compressed into .store
  95. ## files and copied into the app wrapper.  If the help directories themselves
  96. ## need to also be in the app wrapper, then a cp command will need to be added
  97. ## in an after_install target.
  98. OTHER_HELP_DIRS = 
  99.  
  100. # Don't add more rules here unless you want the first one to be the default
  101. # target for make!  Put all your targets in Makefile.postamble.
  102.  
  103.