summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-09-10 20:51:59 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-09-10 20:51:59 (GMT)
commit74e13ad2fc613ca8d3094918b7d70ee0ea53645e (patch)
treeda5d9371962aeee855a36958d3ff82fc026dca1d /Source
parent9149cdd078a1f1ab03eb0a60d30628aeb2395023 (diff)
downloadCMake-74e13ad2fc613ca8d3094918b7d70ee0ea53645e.zip
CMake-74e13ad2fc613ca8d3094918b7d70ee0ea53645e.tar.gz
CMake-74e13ad2fc613ca8d3094918b7d70ee0ea53645e.tar.bz2
moved dump docs into cmake
Diffstat (limited to 'Source')
-rw-r--r--Source/cmDumpDocumentation.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmDumpDocumentation.cxx b/Source/cmDumpDocumentation.cxx
index 9ed5222..f0aebaa 100644
--- a/Source/cmDumpDocumentation.cxx
+++ b/Source/cmDumpDocumentation.cxx
@@ -17,11 +17,11 @@
// Program extracts documentation describing commands from
// the CMake system.
//
-#include "cmMakefile.h"
+#include "cmake.h"
int main(int ac, char** av)
{
- cmMakefile makefile;
+ cmake cmi;
const char* outname = "cmake.html";
if(ac > 1)
{
@@ -33,6 +33,6 @@ int main(int ac, char** av)
std::cerr << "failed to open output file: " << outname << "\n";
return -1;
}
- makefile.DumpDocumentationToFile(fout);
+ cmi.DumpDocumentationToFile(fout);
return 0;
}