Subversion Repositories slepc-dev

Rev

Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1714 Rev 1717
Line 47... Line 47...
	 else \
	 else \
	   echo "Now to install the libraries do: make install";\
	   echo "Now to install the libraries do: make install";\
	   echo "=========================================";\
	   echo "=========================================";\
	 fi
	 fi
 
 
all_build: chk_petsc_dir chk_slepc_dir chklib_dir info deletelibs build shared_nomesg_noinstall slepc4py
all_build: chk_petsc_dir chk_slepc_dir chklib_dir info deletelibs build shared_nomesg_noinstall slepc4py_noinstall
#
#
# Prints information about the system and version of SLEPc being compiled
# Prints information about the system and version of SLEPc being compiled
#
#
info:
info:
	-@echo "=========================================="
	-@echo "=========================================="
Line 238... Line 238...
	    ${MKDIR} ${SLEPC_INSTALL_DIR}/conf ; \
	    ${MKDIR} ${SLEPC_INSTALL_DIR}/conf ; \
          fi;\
          fi;\
          cp -f conf/slepc_common* ${SLEPC_INSTALL_DIR}/conf;\
          cp -f conf/slepc_common* ${SLEPC_INSTALL_DIR}/conf;\
          cp -f conf/slepc_common_variables_install ${SLEPC_INSTALL_DIR}/conf/slepc_common_variables;\
          cp -f conf/slepc_common_variables_install ${SLEPC_INSTALL_DIR}/conf/slepc_common_variables;\
          cp -f ${PETSC_ARCH}/conf/slepcvariables ${SLEPC_INSTALL_DIR}/conf;\
          cp -f ${PETSC_ARCH}/conf/slepcvariables ${SLEPC_INSTALL_DIR}/conf;\
 
          cp -f ${PETSC_ARCH}/conf/slepcrules ${SLEPC_INSTALL_DIR}/conf;\
          if [ ! -d ${SLEPC_INSTALL_DIR}/lib ]; then \
          if [ ! -d ${SLEPC_INSTALL_DIR}/lib ]; then \
	    ${MKDIR} ${SLEPC_INSTALL_DIR}/lib ; \
	    ${MKDIR} ${SLEPC_INSTALL_DIR}/lib ; \
          fi;\
          fi;\
          if [ -d ${PETSC_ARCH}/lib ]; then \
          if [ -d ${PETSC_ARCH}/lib ]; then \
            cp -f ${PETSC_ARCH}/lib/* ${SLEPC_INSTALL_DIR}/lib;\
            cp -f ${PETSC_ARCH}/lib/libslepc*.* ${SLEPC_INSTALL_DIR}/lib;\
            ${RANLIB} ${SLEPC_INSTALL_DIR}/lib/*.a ;\
            ${RANLIB} ${SLEPC_INSTALL_DIR}/lib/*.a ;\
            ${OMAKE} PETSC_ARCH="" SLEPC_DIR=${SLEPC_INSTALL_DIR} shared; \
            ${OMAKE} PETSC_ARCH="" SLEPC_DIR=${SLEPC_INSTALL_DIR} shared; \
 
            ${OMAKE} PETSC_ARCH="" SLEPC_DIR=${SLEPC_INSTALL_DIR} slepc4py; \
          fi;\
          fi;\
 
          echo "====================================";\
	  echo "If using sh/bash, do the following:";\
	  echo "If using sh/bash, do the following:";\
          echo "  SLEPC_DIR="${SLEPC_INSTALL_DIR}"; export SLEPC_DIR";\
          echo "  SLEPC_DIR="${SLEPC_INSTALL_DIR}"; export SLEPC_DIR";\
          echo "  unset PETSC_ARCH";\
          echo "  unset PETSC_ARCH";\
          echo "If using csh/tcsh, do the following:";\
          echo "If using csh/tcsh, do the following:";\
          echo "  setenv SLEPC_DIR "${SLEPC_INSTALL_DIR};\
          echo "  setenv SLEPC_DIR "${SLEPC_INSTALL_DIR};\
          echo "  unsetenv PETSC_ARCH";\
          echo "  unsetenv PETSC_ARCH";\
          echo "Run the following to verify the install (remain in current directory for the tests):";\
          echo "Run the following to verify the install (remain in current directory for the tests):";\
          echo "  make test";\
          echo "  make test";\
 
          echo "====================================";\
        fi;
        fi;
 
 
# ------------------------------------------------------------------
# ------------------------------------------------------------------
#
#
# All remaining actions are intended for SLEPc developers only.
# All remaining actions are intended for SLEPc developers only.