(file) Return to Makefile.Release CVS log (file) (dir) Up to [Pegasus] / pegasus

Diff for /pegasus/Makefile.Release between version 1.1 and 1.3

version 1.1, 2004/08/22 03:20:45 version 1.3, 2004/08/23 00:51:33
Line 7 
Line 7 
 endif endif
  
 include $(ROOT)/mak/config.mak include $(ROOT)/mak/config.mak
 include $(ROOT)/mak/commands.mak  
  
 DIRS = src DIRS = src
  
 include $(ROOT)/mak/recurse.mak include $(ROOT)/mak/recurse.mak
  
 rebuild: clean depend all repository  FORCE:
         $(MAKE) -s tests  
   world: depend all repository install
           @$(ECHO) "build completed successfully"
  
 world: depend all repository  rebuild: clean depend all repository install
         $(MAKE) -s tests          @$(ECHO) "rebuild completed successfully"
  
 repository: FORCE repository: FORCE
         $(MAKE) "-SC" Schemas/Pegasus repository         $(MAKE) "-SC" Schemas/Pegasus repository
  
   install: FORCE
           $(MAKE) -f $(ROOT)/Makefile.Release verify_install_enabled
           $(MAKE) -f $(ROOT)/Makefile.Release preinstall_cleanup
           $(MAKE) -f $(ROOT)/Makefile.Release createPegasusDirectories
           $(MAKE) -f $(ROOT)/Makefile.Release copyPegasusFiles
           $(MAKE) -f $(ROOT)/Makefile.Release createPegasusFiles
   
 PEGASUS_LICENSE = \ PEGASUS_LICENSE = \
    license.txt    license.txt
  
Line 69 
Line 77 
    cimauth \    cimauth \
    cimconfig \    cimconfig \
    cimserver \    cimserver \
    cimuser     cimuser \
      cimprovagt \
      cimservera
  
 PEGASUS_USER_CMDS = \ PEGASUS_USER_CMDS = \
    cimmof \    cimmof \
Line 117 
Line 127 
    PG_UnixProcess20.mof \    PG_UnixProcess20.mof \
    PG_UnixProcess20R.mof    PG_UnixProcess20R.mof
  
 FORCE:  
   
 build:  
         $(MAKE) -f $(ROOT)/Makefile.Release verify_install_enabled  
         $(MAKE)  
   
 verify_install_enabled: FORCE verify_install_enabled: FORCE
 ifndef PEGASUS_ENABLE_MAKE_INSTALL ifndef PEGASUS_ENABLE_MAKE_INSTALL
         @$(ECHO) "Use of \"make install\" is not enabled for this operating environment."         @$(ECHO) "Use of \"make install\" is not enabled for this operating environment."
Line 157 
Line 161 
         $(foreach i, $(PEGASUS_PROVIDERS), $(MAKE) -f $(ROOT)/mak/commands.mak createlink OBJECT=$(i)$(LIB_SUFFIX) LINKNAME=$(PEGASUS_STAGING_DIR)$(PEGASUS_PROVIDER_LIB_DIR)/$(i)$(LIB_LINK_SUFFIX);)         $(foreach i, $(PEGASUS_PROVIDERS), $(MAKE) -f $(ROOT)/mak/commands.mak createlink OBJECT=$(i)$(LIB_SUFFIX) LINKNAME=$(PEGASUS_STAGING_DIR)$(PEGASUS_PROVIDER_LIB_DIR)/$(i)$(LIB_LINK_SUFFIX);)
  
 createPegasusAdminCmdsDirectoryFiles: FORCE createPegasusAdminCmdsDirectoryFiles: FORCE
         $(foreach i, $(PEGASUS_ADMIN_CMDS), $(COPY) $(PEGASUS_HOME)/bin/$(i)$(EXE_SUFFIX) $(PEGASUS_STAGING_DIR)$(PEGASUS_SBIN_DIR)/$(i)$(EXE_SUFFIX); $(MAKE) -f $(ROOT)/mak/commands.mak setpermissions PERMISSIONS="$(P_r_xr__r__)" OWNER="$(INSTALL_USR)" GROUP="$(INSTALL_GRP)" OBJECT=$(PEGASUS_STAGING_DIR)$(PEGASUS_SBIN_DIR)/$(i)$(EXE_SUFFIX);)          $(foreach i, $(PEGASUS_ADMIN_CMDS), $(COPY) $(PEGASUS_HOME)/bin/$(i)$(EXE) $(PEGASUS_STAGING_DIR)$(PEGASUS_SBIN_DIR)/$(i)$(EXE); $(MAKE) -f $(ROOT)/mak/commands.mak setpermissions PERMISSIONS="$(P_r_xr__r__)" OWNER="$(INSTALL_USR)" GROUP="$(INSTALL_GRP)" OBJECT=$(PEGASUS_STAGING_DIR)$(PEGASUS_SBIN_DIR)/$(i)$(EXE);)
  
 createPegasusUserCmdsDirectoryFiles: FORCE createPegasusUserCmdsDirectoryFiles: FORCE
         $(MKDIRHIER) $(PEGASUS_STAGING_DIR)$(PEGASUS_BIN_DIR)         $(MKDIRHIER) $(PEGASUS_STAGING_DIR)$(PEGASUS_BIN_DIR)
         $(MAKE) -f $(ROOT)/mak/commands.mak setpermissions PERMISSIONS="$(Pdr_xr_xr_x)" OWNER="$(INSTALL_USR)" GROUP="$(INSTALL_GRP)" OBJECT=$(PEGASUS_STAGING_DIR)$(PEGASUS_BIN_DIR)         $(MAKE) -f $(ROOT)/mak/commands.mak setpermissions PERMISSIONS="$(Pdr_xr_xr_x)" OWNER="$(INSTALL_USR)" GROUP="$(INSTALL_GRP)" OBJECT=$(PEGASUS_STAGING_DIR)$(PEGASUS_BIN_DIR)
         $(foreach i, $(PEGASUS_USER_CMDS), $(COPY) $(PEGASUS_HOME)/bin/$(i)$(EXE_SUFFIX) $(PEGASUS_STAGING_DIR)$(PEGASUS_BIN_DIR)/$(i)$(EXE_SUFFIX); $(MAKE) -f $(ROOT)/mak/commands.mak setpermissions PERMISSIONS="$(P_r_xr_xr_x)" OWNER="$(INSTALL_USR)" GROUP="$(INSTALL_GRP)" OBJECT=$(PEGASUS_STAGING_DIR)$(PEGASUS_BIN_DIR)/$(i)$(EXE_SUFFIX);)          $(foreach i, $(PEGASUS_USER_CMDS), $(COPY) $(PEGASUS_HOME)/bin/$(i)$(EXE) $(PEGASUS_STAGING_DIR)$(PEGASUS_BIN_DIR)/$(i)$(EXE); $(MAKE) -f $(ROOT)/mak/commands.mak setpermissions PERMISSIONS="$(P_r_xr_xr_x)" OWNER="$(INSTALL_USR)" GROUP="$(INSTALL_GRP)" OBJECT=$(PEGASUS_STAGING_DIR)$(PEGASUS_BIN_DIR)/$(i)$(EXE);)
  
 copyRepositoryNamespaceDirectory: FORCE copyRepositoryNamespaceDirectory: FORCE
         $(CPDIRHIER) $(NAMESPACE_DIR_NAME) $(PEGASUS_STAGING_DIR)$(PEGASUS_REPOSITORY_DIR)         $(CPDIRHIER) $(NAMESPACE_DIR_NAME) $(PEGASUS_STAGING_DIR)$(PEGASUS_REPOSITORY_DIR)
Line 260 
Line 264 
         $(MAKE) -f $(ROOT)/Makefile.Release createClientCertificateFiles         $(MAKE) -f $(ROOT)/Makefile.Release createClientCertificateFiles
 endif endif
  
 install: FORCE  include $(ROOT)/mak/commands.mak
         $(MAKE) -f $(ROOT)/Makefile.Release verify_install_enabled  
         $(MAKE) -f $(ROOT)/Makefile.Release preinstall_cleanup  
         $(MAKE) -f $(ROOT)/Makefile.Release createPegasusDirectories  
         $(MAKE) -f $(ROOT)/Makefile.Release copyPegasusFiles  
         $(MAKE) -f $(ROOT)/Makefile.Release createPegasusFiles  


Legend:
Removed from v.1.1  
changed lines
  Added in v.1.3

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2