Index: /issm/trunk/scripts/quickinstall.sh
===================================================================
--- /issm/trunk/scripts/quickinstall.sh	(revision 72)
+++ /issm/trunk/scripts/quickinstall.sh	(revision 73)
@@ -31,52 +31,29 @@
 	"
 else
-	#Ok, compile ISSM
 
-	#Configure mex file
-	cd etc
-	ln -s $CONFIG  config.mk
+	#1: install some packages
+	cd externalpackages
+	cd mpich2
+	sh install.sh
+	cd ../petsc
+	sh install.sh
+	cd ../metis
+	sh install.sh
+	cd ../triangle
+	sh install.sh
+	cd $ISSM_DIR
+
+	#2: install automake and autoconf
+	cd devpackages
+	make
 	cd ..
 
-	#Compile libraries
-	cd packages
-#		cd 	dakota  
-#		sh install.sh
-#		cd ..
-#		cd 	doxygen  
-#		sh install.sh
-#		cd ..
-#		cd 	gdal  
-#		sh install.sh
-#		cd ..
-#		cd 	m2html 
-#		sh install.sh
-#		cd ..
-		cd 	metis  
-		sh install.sh
-		cd ..
-#		cd 	mpich2 
-#		sh install.sh
-#		cd ..
-#		cd 	mtoc  
-#		sh install.sh
-#		cd ..
-#		cd 	petsc  
-#		sh install.sh
-#		cd ..
-#		cd 	qhull  
-#		sh install.sh
-#		cd ..
-#		cd 	slepc  
-#		sh install.sh
-#		cd ..
-		cd 	suitesparse 
-		sh install.sh
-		cd ..
-		cd 	triangle
-		sh install.sh
-		cd ..
-	cd ..
+	#3: generate MakeFiles
+	./reconfigure.sh
+	./configure.sh
 
-	#Compile ISSM
-	make -f MakefileIce
+	#4: compile ISSM
+	make
+	make install
+
 fi
