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

Diff for /pegasus/mak/config.mak between version 1.1.1.1 and 1.13

version 1.1.1.1, 2001/01/14 19:50:21 version 1.13, 2001/05/24 00:48:34
Line 5 
Line 5 
 ## ##
 ################################################################################ ################################################################################
  
 ifdef PEGASUS_OS_TYPE  ifdef PEGASUS_HOME
   OS_TYPE = $(PEGASUS_OS_TYPE)    HOME_DIR = $(subst \,/,$(PEGASUS_HOME))
 else else
   OS_TYPE = windows    ERROR = pegasus_home_undefined
   pegasus_home_undefined:
           @ echo PEGASUS_HOME environment variable undefined
           @ exit 1
 endif endif
  
 ifdef PEGASUS_BUILD  VALID_PLATFORMS = WIN32_IX86_MSVC LINUX_IX86_GNU AIX_RS_IBMCXX HPUX_PARISC_ACC
   BUILD_DIR = $(subst \,/,$(PEGASUS_BUILD))  
 else  
   BUILD_DIR = $(ROOT)/build  
 endif  
  
 ifdef PEGASUS_ACE_ROOT  ifndef PEGASUS_PLATFORM
   ACE_ROOT = $(subst \,/,$(PEGASUS_ACE_ROOT))    ERROR = pegasus_platform_undefined
 else  pegasus_platform_undefined:
   ERROR = PEGASUS_ACE_ROOT_UNDEFINED          @ echo PEGASUS_PLATFORM environment variable undefined. Please set to\
 PEGASUS_ACE_ROOT_UNDEFINED:              one of the following: $(VALID_PLATFORMS)
         @ echo PEGASUS_ACE_ROOT environment variable undefined  
         @ exit 1         @ exit 1
 endif endif
  
   ################################################################################
   
   OBJ_DIR = $(HOME_DIR)/obj/$(DIR)
   BIN_DIR = $(HOME_DIR)/bin
   LIB_DIR = $(HOME_DIR)/lib
   REPOSITORY_ROOT = $(HOME_DIR)/repository
   
   LEX = flex
  
 ################################################################################ ################################################################################
   ##
   ## Attempt to include a platform configuration file:
   ##
   ################################################################################
  
 OBJ_DIR = $(BUILD_DIR)/obj/$(DIR)  ifeq ($(PEGASUS_PLATFORM),WIN32_IX86_MSVC)
 BIN_DIR = $(BUILD_DIR)/bin    include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
 LIB_DIR = $(BUILD_DIR)/lib    FOUND = true
 REPOSITORY_ROOT = $(BUILD_DIR)  endif
  
 ifeq ($(OS_TYPE),windows)  ifeq ($(PEGASUS_PLATFORM),LINUX_IX86_GNU)
 include $(ROOT)/mak/config-windows.mak    include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
 else    FOUND = true
 include $(ROOT)/mak/config-unix.mak  endif
   
   ifeq ($(PEGASUS_PLATFORM),AIX_RS_IBMCXX)
     include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
     FOUND = true
   endif
   
   ifeq ($(PEGASUS_PLATFORM),HPUX_PARISC_ACC)
     include $(ROOT)/mak/platform_$(PEGASUS_PLATFORM).mak
     FOUND = true
   endif
   
   ifneq ($(FOUND),true)
     ERROR = pegasus_unknown_platform
   pegasus_unknown_platform:
           @ echo PEGASUS_PLATFORM environment variable must be set to one of\
               the following: $(VALID_PLATFORMS)
           @ exit 1
 endif endif


Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.13

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2