home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / flags.make < prev    next >
Text File  |  1996-09-08  |  7KB  |  182 lines

  1. #
  2. # flags.make
  3. #
  4. # This makefile defines the flags which are passed to the compiler, linker,
  5. # and other build tools.  With the exception of the LDFLAGS, all flags found
  6. # here are used by the commands in implicitrules.make
  7. #
  8. # IMPORTED VARIABLES
  9. #    You may define the following variables in your Makefile.preamble
  10. #
  11. #    OTHER_CFLAGS, LOCAL_CFLAGS:  additional flags to pass to the compiler
  12. #    Note that $(OTHER_CFLAGS) and $(LOCAL_CFLAGS) are used for .h, .c, .m,
  13. #    .cc, .cxx, .C, .mm, and .M files.  There is no need to respecify the
  14. #    flags in OTHER_MFLAGS, etc.
  15. #    Note also that OTHER_... flags are inherited by subprojects, while 
  16. #    LOCAL_... flags are only used by the current project.
  17. #    OTHER_MFLAGS, LOCAL_MFLAGS:  additional flags for .m files
  18. #    OTHER_CCFLAGS, LOCAL_CCFLAGS:  additional flags for .cc, .cxx, and .C files
  19. #    OTHER_MMFLAGS, LOCAL_MMFLAGS:  additional flags for .mm and .M files
  20. #    OTHER_PRECOMPFLAGS, LOCAL_PRECOMPFLAGS:  additional flags used when
  21. #    precompiling header files
  22. #    OTHER_LDFLAGS, LOCAL_LDFLAGS:  additional flags passed to ld and libtool
  23. #    OTHER_PSWFLAGS, LOCAL_PSWFLAGS:  additional flags passed to pswrap
  24. #    OTHER_RPCFLAGS, LOCAL_RPCFLAGS:  additional flags passed to rpcgen
  25. #    OTHER_YFLAGS, LOCAL_YFLAGS:  additional flags passed to yacc
  26. #    OTHER_LFLAGS, LOCAL_LFLAGS:  additional flags passed to lex
  27. #
  28. # EXPORTED VARIABLES
  29. #    You may use the following variables in your rules.
  30. #
  31. #    ALL_CFLAGS:  flags to pass when compiling .c files
  32. #    ALL_MFLAGS:  flags to pass when compiling .m files
  33. #    ALL_CCFLAGS:  flags to pass when compiling .cc, .cxx, and .C files
  34. #    ALL_MMFLAGS:  flags to pass when compiling .mm, .mxx, and .M files
  35. #    ALL_PRECOMPFLAGS:  flags to pass when precompiling .h files
  36. #    ALL_LDFLAGS:  flags to pass when linking object files
  37. #    ALL_PSWFLAGS:  flags to pass when processing .psw and .pswm (pswrap) files
  38. #    ALL_RPCFLAGS:  flags to pass when processing .rpc (rpcgen) files
  39. #    ALL_YFLAGS:  flags to pass when processing .y (yacc) files
  40. #    ALL_LFLAGS:  flags to pass when processing .l (lex) files
  41. #
  42. # OVERRIDABLE VARIBLES
  43. #    The following variables are defined by flags.make and may be overridden
  44. #    in your makefile.postamble.
  45. #
  46. #    WARNING_CFLAGS:  flag used to set warning level (defaults to -Wmost)
  47. #    DEBUG_SYMBOLS_CFLAGS:  debug-symbol flag passed to all builds (defaults
  48. #    to -g)
  49. #    DEBUG_BUILD_CFLAGS:  flags passed during debug builds (defaults to -DDEBUG)
  50. #    OPTIMIZE_BUILD_CFLAGS:  flags passed during optimized builds (defaults
  51. #    to -O)
  52. #    PROFILE_BUILD_CFLAGS:  flags passed during profile builds (defaults
  53. #    to -pg -DPROFILE)
  54. #    LOCAL_DIR_INCLUDE_DIRECTIVE:  flag used to add current directory to
  55. #    the include path (defaults to -I.)
  56. #    DEBUG_BUILD_LDFLAGS, OPTIMIZE_BUILD_LDFLAGS, PROFILE_BUILD_LDFLAGS: flags
  57. #    passed to ld/libtool (default to nothing)
  58. #
  59.  
  60. #
  61. # OS-specific flags
  62. #
  63.  
  64. ifeq "NEXTSTEP" "$(OS)"
  65. OS_CFLAGS = -pipe
  66. OS_LDFLAGS = $(SECTORDER_FLAGS)
  67. endif
  68.  
  69. #
  70. # flags defined in Makefile by ProjectBuilder
  71. #
  72.  
  73. PB_CFLAGS += $($(OS)_PB_CFLAGS)
  74. PB_MFLAGS += $($(OS)_PB_MFLAGS)
  75. PB_CCFLAGS += $($(OS)_PB_CCFLAGS)
  76. PB_MMFLAGS += $($(OS)_PB_MMFLAGS)
  77. PB_PRECOMPFLAGS += $($(OS)_PRECOMPFLAGS)
  78. PB_LDFLAGS += $($(OS)_PB_LDFLAGS)
  79. PB_PSWFLAGS += $($(OS)_PB_PSWFLAGS)
  80. PB_RPCFLAGS += $($(OS)_PB_RPCFLAGS)
  81. PB_YFLAGS += $($(OS)_PB_YFLAGS)
  82. PB_LFLAGS += $($(OS)_PB_LFLAGS)
  83.  
  84. #
  85. # optional flags -- note that optimization is on by default
  86. #
  87.  
  88. export OPTIMIZE
  89. export DEBUG
  90. export PROFILE
  91.  
  92. ifndef OPTIMIZE
  93. OPTIMIZE = YES
  94. endif
  95.  
  96. DEBUG_SYMBOLS_CFLAG = -g # this flag is passed to all builds, not just debug builds
  97. DEBUG_BUILD_CFLAGS = -DDEBUG # this flags is only passed to debug builds
  98. DEBUG_BUILD_LDFLAGS =
  99. OPTIMIZE_BUILD_CFLAGS = -O
  100. OPTIMIZE_BUILD_LDFLAGS =
  101. PROFILE_BUILD_CFLAGS = -pg -DPROFILE
  102. PROFILE_BUILD_LDFLAGS =
  103.  
  104. # the ifndef is an optimization -- OFILE_DIR is specified on the command line
  105. # for recursion, so there's no need to spend time invoking the shell.
  106. ifndef RECURSING
  107. OFILE_DIR_SUFFIX := $(OFILE_DIR_SUFFIX)-$(shell echo $(TARGET_ARCHS) | tr " " "-")
  108. endif
  109.  
  110. ifeq "YES" "$(OPTIMIZE)"
  111. OPTIONAL_CFLAGS += $(OPTIMIZE_BUILD_CFLAGS)
  112. OPTIONAL_LDFLAGS += $(OPTIMIZE_BUILD_LDFLAGS)
  113. OPTIONAL_LIBS += $(OPTIMIZE_BUILD_LIBS)
  114. OPTIONAL_FRAMEWORKS += $(OPTIMIZE_BUILD_FRAMEWORKS)
  115. OFILE_DIR_SUFFIX := $(OFILE_DIR_SUFFIX)-opt
  116. endif
  117.  
  118. ifeq "YES" "$(DEBUG)"
  119. OPTIONAL_CFLAGS += $(DEBUG_BUILD_CFLAGS)
  120. OPTIONAL_LDFLAGS += $(DEBUG_BUILD_LDFLAGS)
  121. OPTIONAL_LIBS += $(DEBUG_BUILD_LIBS)
  122. OPTIONAL_FRAMEWORKS += $(DEBUG_BUILD_FRAMEWORKS)
  123. OFILE_DIR_SUFFIX := $(OFILE_DIR_SUFFIX)-debug
  124. endif
  125.  
  126. ifeq "YES" "$(PROFILE)"
  127. OPTIONAL_CFLAGS += $(PROFILE_BUILD_CFLAGS)
  128. OPTIONAL_LDFLAGS += $(PROFILE_BUILD_LDFLAGS)
  129. OPTIONAL_LIBS += $(PROFILE_BUILD_LIBS)
  130. OPTIONAL_FRAMEWORKS += $(PROFILE_BUILD_FRAMEWORKS)
  131. OFILE_DIR_SUFFIX := $(OFILE_DIR_SUFFIX)-profile
  132. endif
  133.  
  134. #
  135. # recursive flags
  136. #
  137.  
  138. export RECURSIVE_CFLAGS += $(HEADER_PATHS) $(FRAMEWORK_PATHS) $(PB_CFLAGS) $(OTHER_CFLAGS)
  139. export RECURSIVE_MFLAGS += $(OTHER_MFLAGS)
  140. export RECURSIVE_CCFLAGS += $(OTHER_CCFLAGS)
  141. export RECURSIVE_MMFLAGS += $(OTHER_MMFLAGS)
  142. export RECURSIVE_PRECOMPFLAGS += $(OTHER_PRECOMPFLAGS)
  143. export RECURSIVE_LDFLAGS += $(FRAMEWORK_PATHS) $(OTHER_LDFLAGS)
  144. export RECURSIVE_PSWFLAGS += $(OTHER_PSWFLAGS)
  145. export RECURSIVE_RPCFLAGS += $(OTHER_RPCFLAGS)
  146. export RECURSIVE_YFLAGS  += $(OTHER_YFLAGS)
  147. export RECURSIVE_LFLAGS  += $(OTHER_LFLAGS)
  148.  
  149. #
  150. # nonrecursive flags
  151. #
  152.  
  153. ARCHITECTURE_FLAGS = $(addprefix -arch ,$(TARGET_ARCHS))
  154. LOCAL_DIR_INCLUDE_DIRECTIVE = -I.
  155. WARNING_CFLAGS = -Wmost
  156.  
  157. NONRECURSIVE_CFLAGS  = $(WARNING_CFLAGS) $(DEBUG_SYMBOLS_CFLAG) -fno-common -I$(PROJECT_HDR_DIR) -I$(PRIVATE_HDR_DIR) -I$(PUBLIC_HDR_DIR) -I$(SFILE_DIR) $(LOCAL_DIR_INCLUDE_DIRECTIVE) $(ARCHITECTURE_FLAGS) $(OS_CFLAGS) $(PROJTYPE_CFLAGS) $(PB_CFLAGS) $(LOCAL_CFLAGS)
  158. NONRECURSIVE_MFLAGS  = -ObjC $(OS_MFLAGS) $(PROJTYPE_MFLAGS) $(PB_MFLAGS) $(LOCAL_MFLAGS)
  159. NONRECURSIVE_CCFLAGS = $(OS_CCFLAGS) $(PROJTYPE_CCFLAGS) $(PB_CCFLAGS) $(LOCAL_CCFLAGS)
  160. NONRECURSIVE_MMFLAGS = -ObjC++ $(OS_MMFLAGS) $(PROJTYPE_MMFLAGS) $(PB_MMFLAGS) $(LOCAL_MMFLAGS)
  161. NONRECURSIVE_PRECOMPFLAGS = -precomp $(OS_PRECOMPFLAGS) $(PROJTYPE_PRECOMPFLAGS) $(PB_PRECOMPFLAGS) $(LOCAL_PRECOMPFLAGS)
  162. NONRECURSIVE_LDFLAGS = -L$(OFILE_DIR) $(OS_LDFLAGS) $(PROJTYPE_LDFLAGS) $(PB_LDFLAGS) $(LOCAL_LDFLAGS)
  163. NONRECURSIVE_PSWFLAGS = -H AppKit $(PROJTYPE_PSWFLAGS) $(PB_PSWFLAGS) $(LOCAL_PSWFLAGS)
  164. NONRECURSIVE_RPCFLAGS = $(PROJTYPE_RPCFLAGS) $(PB_RPCFLAGS)
  165. NONRECURSIVE_YFLAGS  = -d $(OS_YFLAGS) $(PROJTYPE_YFLAGS) $(PB_YFLAGS) $(LOCAL_YFLAGS)
  166. NONRECURSIVE_LFLAGS  = $(OS_LFLAGS) $(PROJTYPE_LFLAGS) $(PB_LFLAGS) $(LOCAL_LFLAGS)
  167.  
  168. #
  169. # build flags
  170. #
  171.  
  172. ALL_CFLAGS =  $(OPTIONAL_CFLAGS) $(NONRECURSIVE_CFLAGS) $(RECURSIVE_CFLAGS)
  173. ALL_MFLAGS =  $(ALL_CFLAGS) $(NONRECURSIVE_MFLAGS) $(RECURSIVE_MFLAGS)
  174. ALL_CCFLAGS = $(ALL_CFLAGS) $(NONRECURSIVE_CCFLAGS) $(RECURSIVE_CCFLAGS)
  175. ALL_MMFLAGS = $(ALL_CFLAGS) $(NONRECURSIVE_MMFLAGS) $(RECURSIVE_MMFLAGS)
  176. ALL_PRECOMPFLAGS = $(ALL_CFLAGS) $(NONRECURSIVE_PRECOMPFLAGS) $(RECURSIVE_PRECOMPFLAGS)
  177. ALL_LDFLAGS = $(OPTIONAL_LDFLAGS) $(NONRECURSIVE_LDFLAGS) $(RECURSIVE_LDFLAGS)
  178. ALL_PSWFLAGS = $(NONRECURSIVE_PSWFLAGS) $(RECURSIVE_PSWFLAGS)
  179. ALL_RPCFLAGS = $(NONRECURSIVE_RPCFLAGS) $(RECURSIVE_RPCFLAGS)
  180. ALL_YFLAGS = $(NONRECURSIVE_YFLAGS) $(RECURSIVE_YFLAGS)
  181. ALL_LFLAGS = $(NONRECURSIVE_LFLAGS) $(RECURSIVE_LFLAGS)
  182.