(file) Return to platform_ZOS_ZSERIES_IBM.mak CVS log (file) (dir) Up to [Pegasus] / pegasus / mak

  1 martin 1.45 #//%LICENSE////////////////////////////////////////////////////////////////
  2 martin 1.46 #//
  3 martin 1.45 #// Licensed to The Open Group (TOG) under one or more contributor license
  4             #// agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
  5             #// this work for additional information regarding copyright ownership.
  6             #// Each contributor licenses this file to you under the OpenPegasus Open
  7             #// Source License; you may not use this file except in compliance with the
  8             #// License.
  9 martin 1.46 #//
 10 martin 1.45 #// Permission is hereby granted, free of charge, to any person obtaining a
 11             #// copy of this software and associated documentation files (the "Software"),
 12             #// to deal in the Software without restriction, including without limitation
 13             #// the rights to use, copy, modify, merge, publish, distribute, sublicense,
 14             #// and/or sell copies of the Software, and to permit persons to whom the
 15             #// Software is furnished to do so, subject to the following conditions:
 16 martin 1.46 #//
 17 martin 1.45 #// The above copyright notice and this permission notice shall be included
 18             #// in all copies or substantial portions of the Software.
 19 martin 1.46 #//
 20 martin 1.45 #// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 21 martin 1.46 #// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 22 martin 1.45 #// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 23             #// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 24             #// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 25             #// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 26             #// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 27 martin 1.46 #//
 28 martin 1.45 #//////////////////////////////////////////////////////////////////////////
 29 aruran.ms 1.19 include $(ROOT)/mak/config-unix.mak
 30                
 31                OS = zos
 32                
 33                ARCHITECTURE = zseries
 34                
 35                COMPILER = ibm
 36                
 37 kumpf     1.48 SYS_INCLUDES = -I/usr/lpp/tcpip/include -I/usr/lpp/ioclib/include -I$(ROOT)/src/stdcxx/zOS
 38 marek     1.23 #SYS_INCLUDES = -I/usr/lpp/tcpip/include -I/usr/lpp/ioclib/include
 39 marek     1.34 DEFINES = -DPEGASUS_PLATFORM_$(PEGASUS_PLATFORM) -D _OPEN_SYS_IF_EXT -D _OPEN_SYS_DIR_EXT -D _OPEN_SYS_FILE_EXT -D_ALL_SOURCE -D_UNIX03_SOURCE -D_OPEN_THREADS=3 -D_OPEN_SYS_SOCK_IPV6 -D_ENHANCED_ASCII_EXT=0xFFFFFFFF
 40 aruran.ms 1.19 
 41 r.kieninger 1.43 DEFINES += -DPEGASUS_OS_ZOS
 42                  
 43 r.kieninger 1.30 DEFINES += -DPEGASUS_USE_SYSLOGS
 44                  
 45 aruran.ms   1.19 ifdef PEGASUS_KERBEROS_AUTHENTICATION
 46                    DEFINES += -DPEGASUS_KERBEROS_AUTHENTICATION
 47                  endif
 48                  
 49                  
 50                  
 51                  ifdef PEGASUS_USE_DEBUG_BUILD_OPTIONS
 52 marek       1.38 FLAGS = -W "c,debug,ASCII,XPLINK,dll,expo,langlvl(extended,newexcp),rtti(dynamiccast),float(ieee),goff"
 53                  PR_FLAGS = -W "c,debug,ASCII,XPLINK,dll,expo,langlvl(extended,newexcp),rtti(dynamiccast),FLOAT(IEEE),goff" -W "l,XPLINK,dll"
 54 aruran.ms   1.19 else
 55 thilo.boehm 1.42 FLAGS = -O2 -W "c,ASCII,XPLINK,dll,expo,langlvl(extended,newexcp),rtti(dynamiccast),float(ieee),goff,INLINE(AUTO,REPORT,1000,8000)"
 56                  PR_FLAGS = -O2 -W "c,ASCII,XPLINK,dll,expo,langlvl(extended,newexcp),rtti(dynamiccast),FLOAT(IEEE),goff,INLINE(AUTO,REPORT,1000,8000)" -W "l,XPLINK,dll,EDIT=NO"
 57 aruran.ms   1.19 endif
 58                  
 59 r.kieninger 1.32 ifdef PEGASUS_GENERATE_LISTINGS
 60                    FLAGS += -W"c,LIST,XREF"
 61                    PR_FLAGS  += -W"c,LIST,XREF" -W"l,MAP,LIST"
 62                  endif
 63                  
 64                  
 65 thilo.boehm 1.31 PEGASUS_ZOS_BUILD_DATE := $(shell date '+%Y%m%d+')
 66 marek       1.24 
 67                  ifdef PEGASUS_ZOS_SERVICE_STRING
 68                         FLAGS += -W "c,SERVICE($(PEGASUS_ZOS_SERVICE_STRING)$(PEGASUS_ZOS_BUILD_DATE))"
 69                      PR_FLAGS += -W "c,SERVICE($(PEGASUS_ZOS_SERVICE_STRING)$(PEGASUS_ZOS_BUILD_DATE))"
 70 r.kieninger 1.32     DEFINES  += -DPEGASUS_ZOS_SERVICE_STRING=\"$(PEGASUS_ZOS_SERVICE_STRING)$(PEGASUS_ZOS_BUILD_DATE)\"
 71 marek       1.24 else
 72                         FLAGS += -W "c,SERVICE(NOTVALI--CIM--NOTVALID--XXX--$(PEGASUS_ZOS_BUILD_DATE))"
 73                      PR_FLAGS += -W "c,SERVICE(NOTVALI--CIM--NOTVALID--XXX--$(PEGASUS_ZOS_BUILD_DATE))"
 74 kumpf       1.47 endif
 75 marek       1.24 
 76 marek       1.39 # supported values for PEGASUS_ZOS_TARGET_LEVEL are the following:
 77                  # zOSV1R7, zOSV1R8, zOSV1R9
 78                  ifdef PEGASUS_ZOS_TARGET_LEVEL
 79                         FLAGS += -W "c,TARGET($(PEGASUS_ZOS_TARGET_LEVEL))"
 80                      PR_FLAGS += -W "c,TARGET($(PEGASUS_ZOS_TARGET_LEVEL))"
 81                  endif
 82 kumpf       1.40 
 83 aruran.ms   1.19 ifdef PEGASUS_ZOS_SECURITY
 84                    DEFINES += -DPEGASUS_ZOS_SECURITY
 85                  endif
 86                  
 87                  ifdef PEGASUS_HAS_MY_KERBEROS
 88                    FLAGS+= -L/usr/local/lib
 89                    PR_FLAGS+= -L/usr/local/lib
 90                  endif
 91                  
 92                  ifdef PEGASUS_ZOS_THREADLEVEL_SECURITY
 93                    DEFINES += -DPEGASUS_ZOS_THREADLEVEL_SECURITY
 94                  endif
 95                  
 96 marek       1.20 
 97 r.kieninger 1.21 # if PEGASUS_ENABLE_SLP is already set then honor the users preference else
 98                  # Enable the compilation of the SLP functions.
 99                  #
100                  ifndef PEGASUS_ENABLE_SLP
101                      PEGASUS_ENABLE_SLP = true
102                  endif
103                  
104 aruran.ms   1.19 SYS_LIBS =
105                  
106                  CXX = c++ -+
107                  
108 thilo.boehm 1.35 CC = cc  -W "c,SSCOMM"
109 aruran.ms   1.19 
110                  SH = sh
111                  
112                  YACC = bison
113                  
114                  RM = rm -f
115                  
116                  DIFF = diff
117                  
118                  SORT = sort
119                  
120                  COPY = cp
121                  
122                  MOVE = mv
123                  
124 r.kieninger 1.32 ZIP = zip
125                  
126 aruran.ms   1.19 LIB_SUFFIX = .so
127                  
128 r.kieninger 1.43 DYNLIB_SUFFIX = .x
129                  
130 marek       1.44 STATLIB_SUFFIX = .a
131                  
132 aruran.ms   1.19 PEGASUS_SUPPORTS_DYNLIB = yes
133                  
134                  PEGASUS_HAS_MAKEDEPEND = yes

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2