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-05-08 02:11:16 +04:00
|
|
|
///! Set cache only and recurse to false by default.
|
|
|
|
cmUnixMakefileGenerator();
|
2001-05-18 19:12:21 +04:00
|
|
|
|
|
|
|
//! just sets the Cache Only and Recurse flags
|
|
|
|
virtual void SetLocal(bool local);
|
|
|
|
|
2001-05-08 02:11:16 +04:00
|
|
|
/**
|
|
|
|
* If cache only is on.
|
|
|
|
* and only stub makefiles are generated, and no depends, for speed.
|
|
|
|
* The default is OFF.
|
|
|
|
**/
|
|
|
|
void SetCacheOnlyOn() {m_CacheOnly = true;}
|
|
|
|
void SetCacheOnlyOff() {m_CacheOnly = false;}
|
|
|
|
/**
|
|
|
|
* If recurse is on, then all the makefiles below this one are parsed as well.
|
|
|
|
*/
|
|
|
|
void SetRecurseOn() {m_Recurse = true;}
|
|
|
|
void SetRecurseOff() {m_Recurse = false;}
|
|
|
|
|
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
|
|
|
|
2001-05-18 23:20:31 +04:00
|
|
|
/**
|
|
|
|
* Try to determine system infomation such as shared library
|
|
|
|
* extension, pthreads, byte order etc.
|
|
|
|
*/
|
|
|
|
virtual void ComputeSystemInfo();
|
|
|
|
|
2001-05-08 02:11:16 +04:00
|
|
|
private:
|
|
|
|
void RecursiveGenerateCacheOnly();
|
2001-06-12 17:00:21 +04:00
|
|
|
void ProcessDepends(const cmMakeDepend &md);
|
2001-05-08 02:11:16 +04:00
|
|
|
void GenerateCacheOnly();
|
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&);
|
2001-04-11 22:59:02 +04:00
|
|
|
void OutputTargetRules(std::ostream& fout);
|
2001-04-30 18:44:00 +04:00
|
|
|
void OutputLinkLibraries(std::ostream&, const char*, const cmTarget &);
|
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&);
|
2001-05-16 23:15:21 +04:00
|
|
|
void OutputMakeVariables(std::ostream&);
|
|
|
|
void OutputMakeRules(std::ostream&);
|
2001-05-23 19:53:37 +04:00
|
|
|
void OutputInstallRules(std::ostream&);
|
2001-05-16 23:15:21 +04:00
|
|
|
void OutputSubDirectoryVars(std::ostream& fout,
|
|
|
|
const char* var,
|
|
|
|
const char* target,
|
|
|
|
const char* target1,
|
|
|
|
const char* target2,
|
|
|
|
const std::vector<std::string>& SubDirectories);
|
|
|
|
void OutputMakeRule(std::ostream&,
|
|
|
|
const char* comment,
|
|
|
|
const char* target,
|
|
|
|
const char* depends,
|
|
|
|
const char* command);
|
2001-05-08 02:11:16 +04:00
|
|
|
private:
|
|
|
|
bool m_CacheOnly;
|
|
|
|
bool m_Recurse;
|
2001-06-14 01:03:49 +04:00
|
|
|
std::string m_ExecutableOutputPath;
|
|
|
|
std::string m_LibraryOutputPath;
|
2000-08-29 23:26:29 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|