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

  1 mike  1.1 ################################################################################
  2           ##
  3           ## Get external environment variables. Note that all external environment
  4           ## variables begin with "PEGASUS_".
  5           ##
  6           ################################################################################
  7           
  8 mike  1.2 ifdef PEGASUS_HOME
  9             HOME_DIR = $(subst \,/,$(PEGASUS_HOME))
 10 mike  1.1 else
 11 mike  1.2   ERROR = pegasus_home_undefined
 12           pegasus_home_undefined:
 13 mike  1.4 	@ echo PEGASUS_HOME environment variable undefined
 14 mike  1.2 	@ exit 1
 15 mike  1.1 endif
 16           
 17 karl  1.18 ifdef PEGASUS_ROOT
 18                ROOT =  $(subst \,/,$(PEGASUS_ROOT))
 19            else
 20                ERROR = pegasus_root_undefined
 21            pegasus_root_undefined:
 22            	@ echo PEGASUS_ROOT environment variable undefined
 23            	@ exit 1
 24            endif
 25            
 26 kumpf 1.21 ifdef PEGASUS_TMP
 27              TMP_DIR = $(subst \,/,$(PEGASUS_TMP))
 28            else
 29              TMP_DIR = .
 30            endif
 31            
 32 mike  1.14 VALID_PLATFORMS = \
 33                WIN32_IX86_MSVC \
 34                LINUX_IX86_GNU \
 35 kumpf 1.19     LINUX_IA64_GNU \
 36 mike  1.14     AIX_RS_IBMCXX \
 37                HPUX_PARISC_ACC \
 38 kumpf 1.22     HPUX_IA64_ACC \
 39 mike  1.15     TRU64_ALPHA_DECCXX \
 40 mike  1.16     SOLARIS_SPARC_GNU \
 41                ZOS_ZSERIES_IBM \
 42                NSK_NONSTOP_NMCPLUS  
 43 mike  1.8  
 44            ifndef PEGASUS_PLATFORM
 45              ERROR = pegasus_platform_undefined
 46            pegasus_platform_undefined:
 47            	@ echo PEGASUS_PLATFORM environment variable undefined. Please set to\
 48            	    one of the following: $(VALID_PLATFORMS)
 49            	@ exit 1
 50            endif
 51            
 52 mike  1.1  ################################################################################
 53            
 54 kumpf 1.22 OBJ_DIR = $(HOME_DIR)/obj/$(DIR)
 55            BIN_DIR = $(HOME_DIR)/bin
 56            LIB_DIR = $(HOME_DIR)/lib
 57            
 58            # define the location for the repository
 59            REPOSITORY_DIR = $(HOME_DIR)
 60            REPOSITORY_ROOT = $(REPOSITORY_DIR)/repository
 61 mike  1.1  
 62 bob   1.5  LEX = flex
 63            
 64 mike  1.8  ################################################################################
 65            ##
 66            ## Attempt to include a platform configuration file:
 67            ##
 68            ################################################################################
 69            
 70 mike  1.9  ifeq ($(PEGASUS_PLATFORM),WIN32_IX86_MSVC)
 71              include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
 72 mike  1.8    FOUND = true
 73            endif
 74            
 75 mike  1.9  ifeq ($(PEGASUS_PLATFORM),LINUX_IX86_GNU)
 76 kumpf 1.19   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
 77              FOUND = true
 78            endif
 79            
 80            ifeq ($(PEGASUS_PLATFORM),LINUX_IA64_GNU)
 81 mike  1.12   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
 82              FOUND = true
 83            endif
 84            
 85            ifeq ($(PEGASUS_PLATFORM),AIX_RS_IBMCXX)
 86 mike  1.13   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
 87              FOUND = true
 88            endif
 89            
 90            ifeq ($(PEGASUS_PLATFORM),HPUX_PARISC_ACC)
 91 kumpf 1.22   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
 92              FOUND = true
 93            endif
 94            
 95            ifeq ($(PEGASUS_PLATFORM),HPUX_IA64_ACC)
 96 mike  1.14   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
 97              FOUND = true
 98            endif
 99            
100            ifeq ($(PEGASUS_PLATFORM),TRU64_ALPHA_DECCXX)
101 mike  1.15   include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
102              FOUND = true
103            endif
104            
105            ifeq ($(PEGASUS_PLATFORM),SOLARIS_SPARC_GNU)
106 mike  1.9    include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
107 mike  1.8    FOUND = true
108 mike  1.16 endif
109            
110            ifeq ($(PEGASUS_PLATFORM),ZOS_ZSERIES_IBM)
111               include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
112               FOUND = true
113            endif
114            
115            ifeq ($(PEGASUS_PLATFORM),NSK_NONSTOP_NMCPLUS)
116               include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
117               FOUND = true
118 mike  1.8  endif
119            
120            ifneq ($(FOUND),true)
121              ERROR = pegasus_unknown_platform
122            pegasus_unknown_platform:
123            	@ echo PEGASUS_PLATFORM environment variable must be set to one of\
124            	    the following: $(VALID_PLATFORMS)
125            	@ exit 1
126            endif
127 karl  1.17 
128            
129            ############################################################
130            #
131            # Set up other Make Variables that depend on platform config files
132            #
133            ############################################################
134            
135            # This is temporary until we end up with a better place to
136            # put this variable
137            # Makefiles can do directory remove with
138            # $(RMREPOSITORY) repositoryname
139            #
140            RMREPOSITORY = $(RMDIRHIER)
141            

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2