summaryrefslogtreecommitdiffstats
path: root/Source/cmUnixMakefile.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmUnixMakefile.h')
-rw-r--r--Source/cmUnixMakefile.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/Source/cmUnixMakefile.h b/Source/cmUnixMakefile.h
new file mode 100644
index 0000000..67c0911
--- /dev/null
+++ b/Source/cmUnixMakefile.h
@@ -0,0 +1,34 @@
+/*=========================================================================
+
+ Program: Insight Segmentation & Registration Toolkit
+ Module: $RCSfile$
+ Language: C++
+ Date: $Date$
+ Version: $Revision$
+
+
+ Copyright (c) 2000 National Library of Medicine
+ All rights reserved.
+
+ See COPYRIGHT.txt for copyright details.
+
+=========================================================================*/
+/**
+ * itkUnixMakefile is used generate unix makefiles.
+ */
+
+#ifndef cmUnixMakefile_h
+#define cmUnixMakefile_h
+#include "cmMakefile.h"
+
+
+class cmUnixMakefile : public cmMakefile
+{
+public:
+ // Write the makefile to the named file
+ void OutputMakefile(const char* file);
+protected:
+ void OutputDepends(std::ostream&);
+};
+
+#endif