Created
March 12, 2009 23:04
-
-
Save vincentchu/78347 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export CC='icc' | |
export CXX='icc' | |
export F77='ifort' | |
export CFLAGS='-O3' | |
export FFLAGS='-O3' | |
export CXXFLAGS=${CFLAGS} | |
export APBS_SRC=/home/vincentc/software/apbs-0.5.1/src/apbs-0.5.1-source | |
export APBS_PREFIX=/home/vincentc/software/apbs-0.5.1 | |
cd ${APBS_SRC} | |
./configure --prefix=${APBS_PREFIX} | |
make all | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment