Index: /issm/trunk/configs/pleiades/pleiades.sh
===================================================================
--- /issm/trunk/configs/pleiades/pleiades.sh	(revision 3124)
+++ /issm/trunk/configs/pleiades/pleiades.sh	(revision 3124)
@@ -0,0 +1,3 @@
+#!/bin/csh
+
+./configure --prefix=$ISSM_DIR --with-serial=no --with-metis-dir=$ISSM_DIR/externalpackages/metis/install --with-petsc-dir=$ISSM_DIR/externalpackages/petsc/install --with-mpi-include=/nasa/sgi/mpt/1.23.nas/includ  --with-mpi-lib="-L/nasa/sgi/mpt/1.23.nas/lib64/ -lmpi -lpthread -lgfortran" --with-petsc-arch=$ISSM_ARCH --with-dakota-dir=$ISSM_DIR/externalpackages/dakota/install --with-mkl-dir=/nasa/intel/mkl/10.0.011/lib/64/ --with-plapack-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/PLAPACKR32-hg/$ISSM_ARCH --with-mumps-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/MUMPS_4.6.3/$ISSM_ARCH/ --with-scalapack-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/SCALAPACK/$ISSM_ARCH/ --with-blacs-dir=$ISSM_DIR/externalpackages/petsc/install/externalpackages/blacs-dev/$ISSM_ARCH --with-graphics-lib=/usr/X11/lib64/libX11.so --with-cxxoptflags="-O3 -xSSE4.2" --with-vendor=intel-pleiades
Index: /issm/trunk/m4/issm_options.m4
===================================================================
--- /issm/trunk/m4/issm_options.m4	(revision 3123)
+++ /issm/trunk/m4/issm_options.m4	(revision 3124)
@@ -638,4 +638,8 @@
 			export CXX=icpc
 			export CXXFLAGS=" -D_INTEL_LINUX_"
+		elif test $VENDOR = intel-pleiades; then
+			export CC=icc
+			export CXX=icpc
+			export CXXFLAGS=" -O3 -D_INTEL_LINUX_ -xSSE4.2"
 		else
 		AC_MSG_ERROR([unknow compiler vendor!])
Index: /issm/trunk/scripts/sync.sh
===================================================================
--- /issm/trunk/scripts/sync.sh	(revision 3123)
+++ /issm/trunk/scripts/sync.sh	(revision 3124)
@@ -6,5 +6,5 @@
 echo "Watch out, this script should be run in top level directory of cielo"
 
-echo -n "Platform (cosmos,mustang,gemini)?: "
+echo -n "Platform (cosmos,mustang,gemini,pleiades)?: "
 read platform 
 
@@ -73,4 +73,26 @@
 	rm -rf Synchronisation
 
+elif [[ "$platform" ==  "pleiades" ]]
+then
+	echo "Synchronizing issm with pleiades"
+
+	rm -rf Synchronisation
+	mkdir Synchronisation
+	cd Synchronisation
+	svn co svn+ssh://mustang.jpl.nasa.gov/proj/ice/issm/issm/trunk
+
+	#then tar the archive
+	tar zcvf trunk.tar.gz trunk/
+
+	#send archive to cosmos
+	scp  trunk.tar.gz elarour@pfe:/home1/elarour
+
+	#run synchronization script on cosmos
+	ssh elarour@pfe './sync_pleiades.sh'
+
+	#exit 
+	cd ..
+	rm -rf Synchronisation
+
 else
 	echo "This platform not supported yet"
