diff --git a/doc/README.occ b/doc/README.occ
index 2ffabd1e9621fe2c6ba7b99a38eb74b52082fdb4..2540a34e548f345aa6647cb03c42e09ee24f5cff 100644
--- a/doc/README.occ
+++ b/doc/README.occ
@@ -10,20 +10,32 @@ How to build OpenCascade 6.1 for Gmsh:
     ./configure --prefix=/usr/local/opencascade --enable-debug=no 
         --enable-production=yes --enable-static=yes --enable-shared=no
 
-    make FoundationClasses
-    make ModelingData
-    make ModelingAlgorithms
-    make DataExchange
-    
-    (or just go into each dr occ/ros/adm/make/XXX and type 'make')
-
-- then
-
-    make install 
-
-    (or just go into each dir occ/ros/adm/make/XXX and type 'make install')
-
-(In our patched version there is a script to do all this automatically)
+    cd adm/make;
+
+    for lib in TKernel TKMath TKAdvTools TKG2d TKG3d TKGeomBase TKBRep 
+      TKGeomAlgo TKTopAlgo TKPrim TKBO TKHLR TKMesh TKShHealing TKBool 
+      TKFillet TKFeat TKOffset TKXSBase TKIGES TKSTEPBase TKSTEPAttr 
+      TKSTEP209 TKSTEP; do
+        cd $lib && make; cd ..;
+    done
+
+    (This is the same as doing 
+        make FoundationClasses
+        make ModelingData
+        make ModelingAlgorithms
+    and part of
+        make DataExchange)
+
+- then do
+
+    for lib in TKernel TKMath TKAdvTools TKG2d TKG3d TKGeomBase TKBRep 
+      TKGeomAlgo TKTopAlgo TKPrim TKBO TKHLR TKMesh TKShHealing TKBool 
+      TKFillet TKFeat TKOffset TKXSBase TKIGES TKSTEPBase TKSTEPAttr 
+      TKSTEP209 TKSTEP; do
+        cd $lib && make install; cd ..;
+    done
+
+    (This is the same as a partial 'make install')
 
 *************************************************************************