/omniORB/mk/platforms/powerpc_aix_4.2.mk

http://github.com/snaewe/omniorb · Makefile · 230 lines · 106 code · 48 blank · 76 comment · 0 complexity · abc6cb9a332256e8ea46343c51641995 MD5 · raw file

  1. #
  2. # powerpc_aix_4.2.mk - make variables and rules specific to AIX 4.2 on
  3. # PowerPC.
  4. #
  5. AIX = 1
  6. PowerPCProcessor = 1
  7. AIX_MAJOR_VERS := $(shell uname -v)
  8. AIX_MINOR_VERS := $(shell uname -r)
  9. #
  10. # Python set-up
  11. #
  12. # You must set a path to a Python 1.5.2 interpreter.
  13. #PYTHON = /usr/local/bin/python
  14. #
  15. # Include general unix things
  16. #
  17. include $(THIS_IMPORT_TREE)/mk/unix.mk
  18. #
  19. # C preprocessor macro definitions for this architecture
  20. #
  21. IMPORT_CPPFLAGS += -D__aix__ -D__powerpc__ -D__OSVERSION__=4
  22. #
  23. # Standard programs
  24. #
  25. AR = ar cq
  26. RANLIB = ranlib
  27. MKDIRHIER = /usr/bin/X11/mkdirhier
  28. # INSTALL = cp # AIX does not have -p
  29. # or use installbsd
  30. INSTALL_USER = `id -un`
  31. INSTALL_GROUP = `id -gn`
  32. INSTALL = installbsd -c -o $(INSTALL_USER) -g $(INSTALL_GROUP)
  33. CMAKEDEPEND += -D_AIX
  34. CXXMAKEDEPEND += -D__cplusplus -D_AIX
  35. ############################################################################
  36. # Using xlC_r #
  37. ############################################################################
  38. # xlC_r 3.1.4 & xlC_r 3.6.6
  39. CXX = xlC_r
  40. CXXDEBUGFLAGS = -O
  41. CXXLINK = xlC_r
  42. # Use C Set++ to compile your C source.
  43. #
  44. CC = xlC_r
  45. CLINK = xlC_r
  46. # Get the compiler version
  47. XLCVERSION := $(shell echo "__xlC__" > /tmp/testAIXCompilerVersion.C )
  48. XLCVERSION := $(shell $(CXX) -+ -E /tmp/testAIXCompilerVersion.C | tail -1')
  49. #'
  50. MAKECPPSHAREDLIB= /usr/ibmcxx/bin/makeC++SharedLib_r
  51. ifeq ($(XLCVERSION),0x0301)
  52. MAKECPPSHAREDLIB = /usr/lpp/xlC/bin/makeC++SharedLib_r
  53. endif
  54. ############################################################################
  55. # Using gcc 2.95 (built with --enable-threads) #
  56. # Not well tested yet. #
  57. # Comment out the xlC_r section above and uncomment the following #
  58. ############################################################################
  59. #CXX = g++
  60. #CXXDEBUGFLAGS = -g
  61. #CXXOPTIONS = -mt
  62. #CXXLINK = g++
  63. #MTFLAGS = -mthreads
  64. #
  65. #CC = gcc
  66. #CLINK = gcc
  67. #############################################################################
  68. # Name all static libraries with -ar.a suffix.
  69. LibPattern = lib%-ar.a
  70. LibSuffixPattern = %-ar.a
  71. LibSearchPattern = -l%-ar
  72. # Name all shared libraries with .a suffix
  73. LibSharedPattern = lib%.a
  74. LibSharedSuffixPattern = %.a
  75. LibSharedSearchPattern = -l%
  76. #
  77. # CORBA stuff
  78. #
  79. #
  80. # Notice that the version number 3.0 is hardwired in OMNIORB_LIB.
  81. #
  82. OMNIORB_LIB = $(patsubst %,$(LibSharedSearchPattern),omniORB30) \
  83. $(patsubst %,$(LibSharedSearchPattern),omniDynamic30) \
  84. $(OMNITHREAD_LIB) $(SOCKET_LIB)
  85. lib_depend := $(patsubst %,$(LibSharedPattern),omniORB30) \
  86. $(patsubst %,$(LibSharedPattern),omniDynamic30)
  87. OMNIORB_LIB_DEPEND1 := $(GENERATE_LIB_DEPEND)
  88. OMNIORB_LIB_DEPEND = $(OMNIORB_LIB_DEPEND1) $(OMNITHREAD_LIB_DEPEND)
  89. OMNIORB_LC_LIB = $(patsubst %,$(LibSharedSearchPattern),omniLC3)
  90. CorbaImplementation = OMNIORB
  91. #
  92. # OMNI thread stuff
  93. #
  94. ThreadSystem = Posix
  95. OMNITHREAD_POSIX_CPPFLAGS = -DNoNanoSleep -DPthreadDraftVersion=8
  96. OMNITHREAD_CPPFLAGS = -D_REENTRANT -D_THREAD_SAFE
  97. OMNITHREAD_LIB = -lomnithread$(OMNITHREAD_MAJOR_VERSION)$(OMNITHREAD_MINOR_VERSION) $(OMNITHREAD_PLATFORM_LIB)
  98. OMNITHREAD_STATIC_LIB = -lomnithread-ar -lpthreads-ar
  99. OMNITHREAD_PLATFORM_LIB = -lpthreads
  100. define CXXExecutable
  101. (set -x; \
  102. $(RM) $@; \
  103. $(CXXLINK) -o $@ $(CXXLINKOPTIONS) $(IMPORT_LIBRARY_FLAGS) \
  104. $(filter-out $(LibSharedSuffixPattern), $(filter-out $(LibSuffixPattern),$^)) $$libs; \
  105. )
  106. endef
  107. define CExecutable
  108. (set -x; \
  109. $(RM) $@; \
  110. $(CLINK) -o $@ $(CLINKOPTIONS) $(IMPORT_LIBRARY_FLAGS) \
  111. $(filter-out $(LibSharedSuffixPattern), $(filter-out $(LibSuffixPattern),$^)) $$libs; \
  112. )
  113. endef
  114. # Default location of the omniORB configuration file [falls back to this if
  115. # the environment variable OMNIORB_CONFIG is not set] :
  116. OMNIORB_CONFIG_DEFAULT_LOCATION = /etc/omniORB.cfg
  117. # Default directory for the omniNames log files.
  118. OMNINAMES_LOG_DEFAULT_LOCATION = /var/omninames
  119. ##########################################################################
  120. #
  121. # Shared library support stuff
  122. #
  123. # Default setup. Work for most platforms. For those exceptions, override
  124. # the rules in their platform files.
  125. #
  126. SHAREDLIB_SUFFIX = a
  127. SharedLibraryFullNameTemplate = lib$$1$$2$$3.$(SHAREDLIB_SUFFIX).$$4
  128. SharedLibrarySoNameTemplate = lib$$1$$2.$(SHAREDLIB_SUFFIX).$$3
  129. SharedLibraryLibNameTemplate = lib$$1$$2$$3.$(SHAREDLIB_SUFFIX)
  130. ifeq ($(notdir $(CXX)),xlC_r)
  131. BuildSharedLibrary = 1 # Enable
  132. SHAREDLIB_CPPFLAGS =
  133. # MakeCXXSharedLibrary- Build shared library
  134. # Expect shell variable:
  135. # namespec = <library name> <major ver. no.> <minor ver. no.> <micro ver. no>
  136. # extralibs = <libraries to add to the link line>
  137. #
  138. # e.g. namespec="COS 3 0 0" --> shared library libCOS300.a
  139. # extralibs="$(OMNIORB_LIB)"
  140. #
  141. define MakeCXXSharedLibrary
  142. $(ParseNameSpec); \
  143. soname=$(SharedLibrarySoNameTemplate); \
  144. set -x; \
  145. $(RM) $@; \
  146. $(MAKECPPSHAREDLIB) \
  147. -o $$soname $(IMPORT_LIBRARY_FLAGS) \
  148. $(filter-out $(LibSuffixPattern),$^) $$extralibs \
  149. -p 40; \
  150. ar cq $@ $$soname; \
  151. $(RM) $$soname;
  152. endef
  153. endif
  154. ifeq ($(notdir $(CXX)),g++)
  155. BuildSharedLibrary = 1 # Enable
  156. SHAREDLIB_CPPFLAGS =
  157. define MakeCXXSharedLibrary
  158. $(ParseNameSpec); \
  159. soname=$(SharedLibrarySoNameTemplate); \
  160. set -x; \
  161. $(RM) $@; \
  162. $(CXXLINK) -shared -mthreads \
  163. -o $$soname $(IMPORT_LIBRARY_FLAGS) \
  164. $(filter-out $(LibSuffixPattern),$^) $$extralibs ; \
  165. ar cq $@ $$soname; \
  166. $(RM) $$soname;
  167. endef
  168. endif
  169. # ExportSharedLibrary- export sharedlibrary
  170. # Expect shell variable:
  171. # namespec = <library name> <major ver. no.> <minor ver. no.> <micro ver. no>
  172. # e.g. namespec = "COS 3 0 0" --> shared library libCOS300.a
  173. #
  174. define ExportSharedLibrary
  175. $(ExportLibrary); \
  176. $(ParseNameSpec); \
  177. libname=$(SharedLibraryLibNameTemplate); \
  178. set -x; \
  179. cd $(EXPORT_TREE)/$(LIBDIR); \
  180. $(RM) $$libname; \
  181. ln -s $(<F) $$libname;
  182. endef