Changed lots of files for the new core/ + skin/ directory structure:

   - changed lots of Makefile.am files
   - changed configure.in
   - changed lots of #include lines for changed file names
   - changed lots of file headers n footers for changed file names
   - changed vg_regtest to handle new directory structure -- recursively
     traverses subdirectories for .vgtest test files
   - changed lots of paths in memcheck/ regression test expected outputs


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1090 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/cachegrind/cg_main.c b/cachegrind/cg_main.c
index b21815e..045748f 100644
--- a/cachegrind/cg_main.c
+++ b/cachegrind/cg_main.c
@@ -2,7 +2,7 @@
 /*--------------------------------------------------------------------*/
 /*--- The cache simulation skin: cache detection; instrumentation, ---*/
 /*--- recording and results printing.                              ---*/
-/*---                                                vg_cachesim.c ---*/
+/*---                                                    cg_main.c ---*/
 /*--------------------------------------------------------------------*/
 
 /*
@@ -40,9 +40,9 @@
     int line_size;  /* bytes */ 
 } cache_t;
 
-#include "vg_cachesim_L2.c"
-#include "vg_cachesim_I1.c"
-#include "vg_cachesim_D1.c"
+#include "cg_sim_L2.c"
+#include "cg_sim_I1.c"
+#include "cg_sim_D1.c"
 
 /*------------------------------------------------------------*/
 /*--- Constants                                            ---*/
@@ -1999,5 +1999,5 @@
 #endif
 
 /*--------------------------------------------------------------------*/
-/*--- end                                            vg_cachesim.c ---*/
+/*--- end                                                cg_main.c ---*/
 /*--------------------------------------------------------------------*/