2000-08-29 23:26:29 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
Copyright (c) 2001 Insight Consortium
|
|
|
|
All rights reserved.
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-04-27 16:01:17 +04:00
|
|
|
* Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
* The name of the Insight Consortium, nor the names of any consortium members,
|
|
|
|
nor of any contributors, may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
* Modified source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2000-08-29 23:26:29 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
2001-01-05 19:41:20 +03:00
|
|
|
#ifndef cmUnixMakefileGenerator_h
|
|
|
|
#define cmUnixMakefileGenerator_h
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
#include "cmMakefile.h"
|
2001-01-05 19:41:20 +03:00
|
|
|
#include "cmMakefileGenerator.h"
|
2000-08-29 23:26:29 +04:00
|
|
|
|
2001-01-11 22:47:38 +03:00
|
|
|
/** \class cmUnixMakefileGenerator
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmUnixMakefileGenerator produces a Unix makefile from its
|
|
|
|
* member m_Makefile.
|
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
class cmUnixMakefileGenerator : public cmMakefileGenerator
|
2000-08-29 23:26:29 +04:00
|
|
|
{
|
|
|
|
public:
|
2001-01-11 22:47:38 +03:00
|
|
|
/**
|
|
|
|
* Produce the makefile (in this case a Unix makefile).
|
2000-09-12 13:30:35 +04:00
|
|
|
*/
|
2001-01-05 19:41:20 +03:00
|
|
|
virtual void GenerateMakefile();
|
2001-01-11 22:47:38 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Output the depend information for all the classes
|
|
|
|
* in the makefile. These would have been generated
|
|
|
|
* by the class cmMakeDepend.
|
|
|
|
*/
|
2001-03-09 18:53:32 +03:00
|
|
|
void OutputObjectDepends(std::ostream&);
|
2001-01-11 22:47:38 +03:00
|
|
|
|
2000-08-29 23:26:29 +04:00
|
|
|
protected:
|
2001-01-05 19:41:20 +03:00
|
|
|
void OutputMakefile(const char* file);
|
2001-02-19 23:13:48 +03:00
|
|
|
void OutputMakeFlags(std::ostream&);
|
|
|
|
void OutputVerbatim(std::ostream&);
|
2001-04-11 22:59:02 +04:00
|
|
|
void OutputTargetRules(std::ostream& fout);
|
2001-04-12 17:55:08 +04:00
|
|
|
void OutputLinkLibraries(std::ostream&, const char*);
|
2001-04-11 22:59:02 +04:00
|
|
|
void OutputTargets(std::ostream&);
|
2001-02-19 23:13:48 +03:00
|
|
|
void OutputSubDirectoryRules(std::ostream&);
|
|
|
|
void OutputDependInformation(std::ostream&);
|
2001-03-09 18:53:32 +03:00
|
|
|
void OutputDependencies(std::ostream&);
|
2001-03-03 00:04:26 +03:00
|
|
|
void OutputCustomRules(std::ostream&);
|
2000-08-29 23:26:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|