2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2012-09-19 12:28:29 +00:00
|
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the qmake application of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
2012-09-19 12:28:29 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
2012-09-19 12:28:29 +00:00
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-04-27 10:05:43 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2011-05-24 09:34:08 +00:00
|
|
|
** GNU General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3.0 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
2012-01-24 06:17:24 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "unixmake.h"
|
|
|
|
#include "option.h"
|
|
|
|
#include "meta.h"
|
|
|
|
#include <qregexp.h>
|
|
|
|
#include <qbytearray.h>
|
|
|
|
#include <qfile.h>
|
|
|
|
#include <qdir.h>
|
|
|
|
#include <qdatetime.h>
|
|
|
|
#include <qdebug.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
UnixMakefileGenerator::UnixMakefileGenerator() : MakefileGenerator(), init_flag(false), include_deps(false)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UnixMakefileGenerator::writePrlFile(QTextStream &t)
|
|
|
|
{
|
|
|
|
MakefileGenerator::writePrlFile(t);
|
|
|
|
// libtool support
|
|
|
|
|
|
|
|
if(project->isActiveConfig("create_libtool") && project->first("TEMPLATE") == "lib") { //write .la
|
|
|
|
if(project->isActiveConfig("compile_libtool"))
|
|
|
|
warn_msg(WarnLogic, "create_libtool specified with compile_libtool can lead to conflicting .la\n"
|
|
|
|
"formats, create_libtool has been disabled\n");
|
|
|
|
else
|
|
|
|
writeLibtoolFile();
|
|
|
|
}
|
|
|
|
// pkg-config support
|
|
|
|
if(project->isActiveConfig("create_pc") && project->first("TEMPLATE") == "lib")
|
|
|
|
writePkgConfigFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
UnixMakefileGenerator::writeMakefile(QTextStream &t)
|
|
|
|
{
|
|
|
|
|
|
|
|
writeHeader(t);
|
|
|
|
if(!project->values("QMAKE_FAILED_REQUIREMENTS").isEmpty()) {
|
|
|
|
t << "QMAKE = " << var("QMAKE_QMAKE") << endl;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &qut = project->values("QMAKE_EXTRA_TARGETS");
|
|
|
|
for (ProStringList::ConstIterator it = qut.begin(); it != qut.end(); ++it)
|
2011-04-27 10:05:43 +00:00
|
|
|
t << *it << " ";
|
|
|
|
t << "first all clean install distclean uninstall qmake_all:" << "\n\t"
|
|
|
|
<< "@echo \"Some of the required modules ("
|
|
|
|
<< var("QMAKE_FAILED_REQUIREMENTS") << ") are not available.\"" << "\n\t"
|
|
|
|
<< "@echo \"Skipped.\"" << endl << endl;
|
|
|
|
writeMakeQmake(t);
|
2012-04-25 15:12:53 +00:00
|
|
|
t << "FORCE:" << endl << endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (project->values("TEMPLATE").first() == "app" ||
|
2011-05-03 13:30:28 +00:00
|
|
|
project->values("TEMPLATE").first() == "lib" ||
|
|
|
|
project->values("TEMPLATE").first() == "aux") {
|
2011-04-27 10:05:43 +00:00
|
|
|
if(Option::mkfile::do_stub_makefile && MakefileGenerator::writeStubMakefile(t))
|
|
|
|
return true;
|
|
|
|
writeMakeParts(t);
|
|
|
|
return MakefileGenerator::writeMakefile(t);
|
|
|
|
} else if(project->values("TEMPLATE").first() == "subdirs") {
|
|
|
|
MakefileGenerator::writeSubDirs(t);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UnixMakefileGenerator::writeMakeParts(QTextStream &t)
|
|
|
|
{
|
|
|
|
QString deps = fileFixify(Option::output.fileName()), target_deps, prl;
|
|
|
|
bool do_incremental = (project->isActiveConfig("incremental") &&
|
|
|
|
!project->values("QMAKE_INCREMENTAL").isEmpty() &&
|
|
|
|
(!project->values("QMAKE_APP_FLAG").isEmpty() ||
|
|
|
|
(!project->isActiveConfig("staticlib")))),
|
|
|
|
src_incremental=false;
|
|
|
|
|
|
|
|
t << "####### Compiler, tools and options" << endl << endl;
|
|
|
|
t << "CC = " << var("QMAKE_CC") << endl;
|
|
|
|
t << "CXX = " << var("QMAKE_CXX") << endl;
|
|
|
|
t << "DEFINES = "
|
|
|
|
<< varGlue("PRL_EXPORT_DEFINES","-D"," -D"," ")
|
|
|
|
<< varGlue("DEFINES","-D"," -D","") << endl;
|
|
|
|
t << "CFLAGS = " << var("QMAKE_CFLAGS") << " $(DEFINES)" << endl;
|
|
|
|
t << "CXXFLAGS = " << var("QMAKE_CXXFLAGS") << " $(DEFINES)" << endl;
|
|
|
|
t << "INCPATH = " << "-I" << specdir();
|
|
|
|
if(!project->isActiveConfig("no_include_pwd")) {
|
|
|
|
QString pwd = escapeFilePath(fileFixify(qmake_getpwd()));
|
|
|
|
if(pwd.isEmpty())
|
|
|
|
pwd = ".";
|
|
|
|
t << " -I" << pwd;
|
|
|
|
}
|
|
|
|
{
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &incs = project->values("INCLUDEPATH");
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < incs.size(); ++i) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString inc = escapeFilePath(incs.at(i));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!inc.isEmpty())
|
|
|
|
t << " " << "-I" << inc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!project->isEmpty("QMAKE_FRAMEWORKPATH_FLAGS"))
|
|
|
|
t << " " << var("QMAKE_FRAMEWORKPATH_FLAGS");
|
|
|
|
t << endl;
|
|
|
|
|
|
|
|
if(!project->isActiveConfig("staticlib")) {
|
|
|
|
t << "LINK = " << var("QMAKE_LINK") << endl;
|
|
|
|
t << "LFLAGS = " << var("QMAKE_LFLAGS") << endl;
|
2012-07-13 11:16:39 +00:00
|
|
|
t << "LIBS = " << "$(SUBLIBS) " << var("QMAKE_LIBS") << " " << var("QMAKE_LIBS_PRIVATE") << endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
t << "AR = " << var("QMAKE_AR") << endl;
|
|
|
|
t << "RANLIB = " << var("QMAKE_RANLIB") << endl;
|
|
|
|
t << "QMAKE = " << var("QMAKE_QMAKE") << endl;
|
|
|
|
t << "TAR = " << var("QMAKE_TAR") << endl;
|
|
|
|
t << "COMPRESS = " << var("QMAKE_GZIP") << endl;
|
|
|
|
if(project->isActiveConfig("compile_libtool"))
|
|
|
|
t << "LIBTOOL = " << var("QMAKE_LIBTOOL") << endl;
|
|
|
|
t << "COPY = " << var("QMAKE_COPY") << endl;
|
|
|
|
t << "SED = " << var("QMAKE_STREAM_EDITOR") << endl;
|
|
|
|
t << "COPY_FILE = " << var("QMAKE_COPY_FILE") << endl;
|
|
|
|
t << "COPY_DIR = " << var("QMAKE_COPY_DIR") << endl;
|
|
|
|
t << "STRIP = " << var("QMAKE_STRIP") << endl;
|
|
|
|
t << "INSTALL_FILE = " << var("QMAKE_INSTALL_FILE") << endl;
|
|
|
|
t << "INSTALL_DIR = " << var("QMAKE_INSTALL_DIR") << endl;
|
|
|
|
t << "INSTALL_PROGRAM = " << var("QMAKE_INSTALL_PROGRAM") << endl;
|
|
|
|
|
|
|
|
t << "DEL_FILE = " << var("QMAKE_DEL_FILE") << endl;
|
|
|
|
t << "SYMLINK = " << var("QMAKE_SYMBOLIC_LINK") << endl;
|
|
|
|
t << "DEL_DIR = " << var("QMAKE_DEL_DIR") << endl;
|
|
|
|
t << "MOVE = " << var("QMAKE_MOVE") << endl;
|
|
|
|
t << "CHK_DIR_EXISTS= " << var("QMAKE_CHK_DIR_EXISTS") << endl;
|
|
|
|
t << "MKDIR = " << var("QMAKE_MKDIR") << endl;
|
|
|
|
|
|
|
|
t << endl;
|
|
|
|
|
|
|
|
t << "####### Output directory" << endl << endl;
|
|
|
|
if (! project->values("OBJECTS_DIR").isEmpty())
|
|
|
|
t << "OBJECTS_DIR = " << var("OBJECTS_DIR") << endl;
|
|
|
|
else
|
|
|
|
t << "OBJECTS_DIR = ./" << endl;
|
|
|
|
t << endl;
|
|
|
|
|
|
|
|
/* files */
|
|
|
|
t << "####### Files" << endl << endl;
|
|
|
|
t << "SOURCES = " << valList(escapeFilePaths(project->values("SOURCES"))) << " "
|
|
|
|
<< valList(escapeFilePaths(project->values("GENERATED_SOURCES"))) << endl;
|
|
|
|
if(do_incremental) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &objs = project->values("OBJECTS");
|
|
|
|
const ProStringList &incrs = project->values("QMAKE_INCREMENTAL");
|
|
|
|
ProStringList incrs_out;
|
2011-04-27 10:05:43 +00:00
|
|
|
t << "OBJECTS = ";
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::ConstIterator objit = objs.begin(); objit != objs.end(); ++objit) {
|
2011-04-27 10:05:43 +00:00
|
|
|
bool increment = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::ConstIterator incrit = incrs.begin(); incrit != incrs.end(); ++incrit) {
|
|
|
|
if ((*objit).toQString().indexOf(QRegExp((*incrit).toQString(), Qt::CaseSensitive,
|
|
|
|
QRegExp::Wildcard)) != -1) {
|
2011-04-27 10:05:43 +00:00
|
|
|
increment = true;
|
|
|
|
incrs_out.append((*objit));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!increment)
|
|
|
|
t << "\\\n\t\t" << (*objit);
|
|
|
|
}
|
|
|
|
if(incrs_out.count() == objs.count()) { //we just switched places, no real incrementals to be done!
|
|
|
|
t << escapeFilePaths(incrs_out).join(" \\\n\t\t") << endl;
|
|
|
|
} else if(!incrs_out.count()) {
|
|
|
|
t << endl;
|
|
|
|
} else {
|
|
|
|
src_incremental = true;
|
|
|
|
t << endl;
|
|
|
|
t << "INCREMENTAL_OBJECTS = " << escapeFilePaths(incrs_out).join(" \\\n\t\t") << endl;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
t << "OBJECTS = " << valList(escapeFilePaths(project->values("OBJECTS"))) << endl;
|
|
|
|
}
|
|
|
|
if(do_incremental && !src_incremental)
|
|
|
|
do_incremental = false;
|
2012-09-06 10:21:38 +00:00
|
|
|
t << "DIST = " << valList(fileFixify(project->values("DISTFILES").toQStringList())) << endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
t << "QMAKE_TARGET = " << var("QMAKE_ORIG_TARGET") << endl;
|
|
|
|
t << "DESTDIR = " << var("DESTDIR") << endl;
|
|
|
|
if(project->isActiveConfig("compile_libtool"))
|
|
|
|
t << "TARGETL = " << var("TARGET_la") << endl;
|
|
|
|
t << "TARGET = " << escapeFilePath(var("TARGET")) << endl;
|
|
|
|
if(project->isActiveConfig("plugin")) {
|
|
|
|
t << "TARGETD = " << escapeFilePath(var("TARGET")) << endl;
|
|
|
|
} else if(!project->isActiveConfig("staticlib") && project->values("QMAKE_APP_FLAG").isEmpty()) {
|
|
|
|
t << "TARGETA = " << escapeFilePath(var("TARGETA")) << endl;
|
|
|
|
if(!project->isEmpty("QMAKE_BUNDLE")) {
|
|
|
|
t << "TARGETD = " << escapeFilePath(var("TARGET_x.y")) << endl;
|
|
|
|
t << "TARGET0 = " << escapeFilePath(var("TARGET_")) << endl;
|
|
|
|
} else if(project->isEmpty("QMAKE_HPUX_SHLIB")) {
|
|
|
|
t << "TARGETD = " << escapeFilePath(var("TARGET_x.y.z")) << endl;
|
|
|
|
t << "TARGET0 = " << escapeFilePath(var("TARGET_")) << endl;
|
|
|
|
t << "TARGET1 = " << escapeFilePath(var("TARGET_x")) << endl;
|
|
|
|
t << "TARGET2 = " << escapeFilePath(var("TARGET_x.y")) << endl;
|
|
|
|
} else {
|
|
|
|
t << "TARGETD = " << escapeFilePath(var("TARGET_x")) << endl;
|
|
|
|
t << "TARGET0 = " << escapeFilePath(var("TARGET_")) << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
writeExtraCompilerVariables(t);
|
|
|
|
writeExtraVariables(t);
|
|
|
|
t << endl;
|
|
|
|
|
|
|
|
// blasted includes
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &qeui = project->values("QMAKE_EXTRA_INCLUDES");
|
|
|
|
ProStringList::ConstIterator it;
|
2011-04-27 10:05:43 +00:00
|
|
|
for(it = qeui.begin(); it != qeui.end(); ++it)
|
|
|
|
t << "include " << (*it) << endl;
|
|
|
|
|
|
|
|
/* rules */
|
|
|
|
t << "first: all" << endl;
|
|
|
|
t << "####### Implicit rules" << endl << endl;
|
|
|
|
t << ".SUFFIXES: " << Option::obj_ext;
|
|
|
|
for(QStringList::Iterator cit = Option::c_ext.begin(); cit != Option::c_ext.end(); ++cit)
|
|
|
|
t << " " << (*cit);
|
|
|
|
for(QStringList::Iterator cppit = Option::cpp_ext.begin(); cppit != Option::cpp_ext.end(); ++cppit)
|
|
|
|
t << " " << (*cppit);
|
|
|
|
t << endl << endl;
|
|
|
|
for(QStringList::Iterator cppit = Option::cpp_ext.begin(); cppit != Option::cpp_ext.end(); ++cppit)
|
|
|
|
t << (*cppit) << Option::obj_ext << ":\n\t" << var("QMAKE_RUN_CXX_IMP") << endl << endl;
|
|
|
|
for(QStringList::Iterator cit = Option::c_ext.begin(); cit != Option::c_ext.end(); ++cit)
|
|
|
|
t << (*cit) << Option::obj_ext << ":\n\t" << var("QMAKE_RUN_CC_IMP") << endl << endl;
|
|
|
|
|
|
|
|
if(include_deps) {
|
2011-10-24 11:37:30 +00:00
|
|
|
if (project->isActiveConfig("gcc_MD_depends")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList objects = project->values("OBJECTS");
|
|
|
|
for (ProStringList::Iterator it = objects.begin(); it != objects.end(); ++it) {
|
|
|
|
QString d_file = (*it).toQString().replace(QRegExp(Option::obj_ext + "$"), ".d");
|
2011-10-24 11:37:30 +00:00
|
|
|
t << "-include " << d_file << endl;
|
2012-09-06 10:21:38 +00:00
|
|
|
project->values("QMAKE_DISTCLEAN") << d_file;
|
2011-10-24 11:37:30 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
QString cmd=var("QMAKE_CFLAGS_DEPS") + " ";
|
|
|
|
cmd += varGlue("DEFINES","-D"," -D","") + varGlue("PRL_EXPORT_DEFINES"," -D"," -D","");
|
|
|
|
if(!project->isEmpty("QMAKE_ABSOLUTE_SOURCE_PATH"))
|
|
|
|
cmd += " -I" + project->first("QMAKE_ABSOLUTE_SOURCE_PATH") + " ";
|
|
|
|
cmd += " $(INCPATH) " + varGlue("DEPENDPATH", "-I", " -I", "");
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString odir;
|
2011-10-24 11:37:30 +00:00
|
|
|
if(!project->values("OBJECTS_DIR").isEmpty())
|
|
|
|
odir = project->first("OBJECTS_DIR");
|
2011-10-11 18:27:22 +00:00
|
|
|
|
2011-10-24 11:37:30 +00:00
|
|
|
QString pwd = escapeFilePath(fileFixify(qmake_getpwd()));
|
2011-10-11 18:27:22 +00:00
|
|
|
|
2011-10-24 11:37:30 +00:00
|
|
|
t << "###### Dependencies" << endl << endl;
|
|
|
|
t << odir << ".deps/%.d: " << pwd << "/%.cpp\n\t";
|
|
|
|
if(project->isActiveConfig("echo_depend_creation"))
|
|
|
|
t << "@echo Creating depend for $<" << "\n\t";
|
|
|
|
t << mkdir_p_asstring("$(@D)") << "\n\t"
|
|
|
|
<< "@$(CXX) " << cmd << " $< | sed \"s,^\\($(*F).o\\):," << odir << "\\1:,g\" >$@" << endl << endl;
|
|
|
|
|
|
|
|
t << odir << ".deps/%.d: " << pwd << "/%.c\n\t";
|
|
|
|
if(project->isActiveConfig("echo_depend_creation"))
|
|
|
|
t << "@echo Creating depend for $<" << "\n\t";
|
|
|
|
t << mkdir_p_asstring("$(@D)") << "\n\t"
|
|
|
|
<< "@$(CC) " << cmd << " $< | sed \"s,^\\($(*F).o\\):," << odir << "\\1:,g\" >$@" << endl << endl;
|
|
|
|
|
2012-08-20 11:04:39 +00:00
|
|
|
static const char * const src[] = { "SOURCES", "GENERATED_SOURCES", 0 };
|
|
|
|
for (int x = 0; src[x]; x++) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &l = project->values(src[x]);
|
|
|
|
for (ProStringList::ConstIterator it = l.begin(); it != l.end(); ++it) {
|
2011-10-24 11:37:30 +00:00
|
|
|
if(!(*it).isEmpty()) {
|
|
|
|
QString d_file;
|
|
|
|
for(QStringList::Iterator cit = Option::c_ext.begin();
|
|
|
|
cit != Option::c_ext.end(); ++cit) {
|
|
|
|
if((*it).endsWith((*cit))) {
|
2012-09-06 10:21:38 +00:00
|
|
|
d_file = (*it).left((*it).length() - (*cit).length()).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-10-24 11:37:30 +00:00
|
|
|
if(d_file.isEmpty()) {
|
|
|
|
for(QStringList::Iterator cppit = Option::cpp_ext.begin();
|
|
|
|
cppit != Option::cpp_ext.end(); ++cppit) {
|
|
|
|
if((*it).endsWith((*cppit))) {
|
2012-09-06 10:21:38 +00:00
|
|
|
d_file = (*it).left((*it).length() - (*cppit).length()).toQString();
|
2011-10-24 11:37:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-10-11 18:27:22 +00:00
|
|
|
|
2011-10-24 11:37:30 +00:00
|
|
|
if(!d_file.isEmpty()) {
|
|
|
|
d_file = odir + ".deps/" + fileFixify(d_file, pwd, Option::output_dir) + ".d";
|
2012-09-06 10:21:38 +00:00
|
|
|
QStringList deps = findDependencies((*it).toQString()).filter(QRegExp(
|
2011-10-24 11:37:30 +00:00
|
|
|
"((^|/)" + Option::h_moc_mod + "|" + Option::cpp_moc_ext + "$)"));
|
|
|
|
if(!deps.isEmpty())
|
2012-05-18 18:00:23 +00:00
|
|
|
t << d_file << ": " << deps.join(' ') << endl;
|
2011-10-24 11:37:30 +00:00
|
|
|
t << "-include " << d_file << endl;
|
|
|
|
project->values("QMAKE_DISTCLEAN") += d_file;
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t << "####### Build rules" << endl << endl;
|
|
|
|
if(!project->values("SUBLIBS").isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString libdir = "tmp/";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("SUBLIBS_DIR"))
|
|
|
|
libdir = project->first("SUBLIBS_DIR");
|
|
|
|
t << "SUBLIBS = ";
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &l = project->values("SUBLIBS");
|
|
|
|
for (ProStringList::ConstIterator it = l.begin(); it != l.end(); ++it)
|
2011-04-27 10:05:43 +00:00
|
|
|
t << libdir << project->first("QMAKE_PREFIX_STATICLIB") << (*it) << "."
|
|
|
|
<< project->first("QMAKE_EXTENSION_STATICLIB") << " ";
|
|
|
|
t << endl << endl;
|
|
|
|
}
|
|
|
|
if(project->isActiveConfig("depend_prl") && !project->isEmpty("QMAKE_PRL_INTERNAL_FILES")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &l = project->values("QMAKE_PRL_INTERNAL_FILES");
|
|
|
|
ProStringList::ConstIterator it;
|
2011-04-27 10:05:43 +00:00
|
|
|
for(it = l.begin(); it != l.end(); ++it) {
|
2012-08-22 12:10:35 +00:00
|
|
|
QMakeMetaInfo libinfo(project);
|
2012-09-06 10:21:38 +00:00
|
|
|
if (libinfo.readLib((*it).toQString()) && !libinfo.isEmpty("QMAKE_PRL_BUILD_DIR")) {
|
|
|
|
ProString dir;
|
2011-04-27 10:05:43 +00:00
|
|
|
int slsh = (*it).lastIndexOf(Option::dir_sep);
|
|
|
|
if(slsh != -1)
|
|
|
|
dir = (*it).left(slsh + 1);
|
|
|
|
QString targ = dir + libinfo.first("QMAKE_PRL_TARGET");
|
|
|
|
target_deps += " " + targ;
|
|
|
|
t << targ << ":" << "\n\t"
|
|
|
|
<< "@echo \"Creating '" << targ << "'\"" << "\n\t"
|
|
|
|
<< "(cd " << libinfo.first("QMAKE_PRL_BUILD_DIR") << ";"
|
|
|
|
<< "$(MAKE))" << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-15 17:41:22 +00:00
|
|
|
if (!project->values("QMAKE_APP_FLAG").isEmpty() || project->first("TEMPLATE") == "aux") {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString destdir = project->first("DESTDIR").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("QMAKE_BUNDLE")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString bundle_loc = project->first("QMAKE_BUNDLE_LOCATION").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!bundle_loc.isEmpty() && !bundle_loc.startsWith("/"))
|
|
|
|
bundle_loc.prepend("/");
|
|
|
|
if(!bundle_loc.endsWith("/"))
|
|
|
|
bundle_loc += "/";
|
|
|
|
destdir += project->first("QMAKE_BUNDLE") + bundle_loc;
|
|
|
|
}
|
|
|
|
if(do_incremental) {
|
|
|
|
//incremental target
|
|
|
|
QString incr_target = var("TARGET") + "_incremental";
|
|
|
|
if(incr_target.indexOf(Option::dir_sep) != -1)
|
|
|
|
incr_target = incr_target.right(incr_target.length() -
|
|
|
|
(incr_target.lastIndexOf(Option::dir_sep) + 1));
|
|
|
|
QString incr_deps, incr_objs;
|
|
|
|
if(project->first("QMAKE_INCREMENTAL_STYLE") == "ld") {
|
|
|
|
QString incr_target_dir = var("OBJECTS_DIR") + incr_target + Option::obj_ext;
|
|
|
|
//actual target
|
|
|
|
t << incr_target_dir << ": $(OBJECTS)" << "\n\t"
|
|
|
|
<< "ld -r -o "<< incr_target_dir << " $(OBJECTS)" << endl;
|
|
|
|
//communicated below
|
|
|
|
deps.prepend(incr_target_dir + " ");
|
|
|
|
incr_deps = "$(INCREMENTAL_OBJECTS)";
|
|
|
|
if(!incr_objs.isEmpty())
|
|
|
|
incr_objs += " ";
|
|
|
|
incr_objs += incr_target_dir;
|
|
|
|
} else {
|
|
|
|
//actual target
|
|
|
|
QString incr_target_dir = var("DESTDIR") + "lib" + incr_target + "." +
|
|
|
|
project->values("QMAKE_EXTENSION_SHLIB").first();
|
|
|
|
QString incr_lflags = var("QMAKE_LFLAGS_SHLIB") + " ";
|
|
|
|
if(project->isActiveConfig("debug"))
|
|
|
|
incr_lflags += var("QMAKE_LFLAGS_DEBUG");
|
|
|
|
else
|
|
|
|
incr_lflags += var("QMAKE_LFLAGS_RELEASE");
|
|
|
|
t << incr_target_dir << ": $(INCREMENTAL_OBJECTS)" << "\n\t";
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << "\n\t" << mkdir_p_asstring(destdir) << "\n\t";
|
|
|
|
t << "$(LINK) " << incr_lflags << " -o "<< incr_target_dir <<
|
|
|
|
" $(INCREMENTAL_OBJECTS)" << endl;
|
|
|
|
//communicated below
|
|
|
|
if(!destdir.isEmpty()) {
|
|
|
|
if(!incr_objs.isEmpty())
|
|
|
|
incr_objs += " ";
|
|
|
|
incr_objs += "-L" + destdir;
|
|
|
|
} else {
|
|
|
|
if(!incr_objs.isEmpty())
|
|
|
|
incr_objs += " ";
|
|
|
|
incr_objs += "-L" + qmake_getpwd();
|
|
|
|
}
|
|
|
|
if(!incr_objs.isEmpty())
|
|
|
|
incr_objs += " ";
|
|
|
|
incr_objs += " -l" + incr_target;
|
|
|
|
deps.prepend(incr_target_dir + " ");
|
|
|
|
incr_deps = "$(OBJECTS)";
|
|
|
|
}
|
|
|
|
t << "all: " << escapeDependencyPath(deps) << " " << valGlue(escapeDependencyPaths(project->values("ALL_DEPS")),""," "," ") << "$(TARGET)"
|
|
|
|
<< endl << endl;
|
|
|
|
|
|
|
|
//real target
|
|
|
|
t << var("TARGET") << ": " << var("PRE_TARGETDEPS") << " " << incr_deps << " " << target_deps
|
|
|
|
<< " " << var("POST_TARGETDEPS") << "\n\t";
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << "\n\t" << mkdir_p_asstring(destdir) << "\n\t";
|
|
|
|
if(!project->isEmpty("QMAKE_PRE_LINK"))
|
|
|
|
t << var("QMAKE_PRE_LINK") << "\n\t";
|
|
|
|
t << "$(LINK) $(LFLAGS) -o $(TARGET) " << incr_deps << " " << incr_objs << " $(OBJCOMP) $(LIBS)";
|
|
|
|
if(!project->isEmpty("QMAKE_POST_LINK"))
|
|
|
|
t << "\n\t" << var("QMAKE_POST_LINK");
|
|
|
|
t << endl << endl;
|
|
|
|
} else {
|
|
|
|
t << "all: " << escapeDependencyPath(deps) << " " << valGlue(escapeDependencyPaths(project->values("ALL_DEPS")),""," "," ") << "$(TARGET)"
|
|
|
|
<< endl << endl;
|
|
|
|
|
|
|
|
t << "$(TARGET): " << var("PRE_TARGETDEPS") << " $(OBJECTS) "
|
|
|
|
<< target_deps << " " << var("POST_TARGETDEPS") << "\n\t";
|
2012-08-15 17:41:22 +00:00
|
|
|
if (project->first("TEMPLATE") != "aux") {
|
|
|
|
if (!destdir.isEmpty())
|
|
|
|
t << mkdir_p_asstring(destdir) << "\n\t";
|
|
|
|
if (!project->isEmpty("QMAKE_PRE_LINK"))
|
|
|
|
t << var("QMAKE_PRE_LINK") << "\n\t";
|
|
|
|
t << "$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)";
|
|
|
|
if (!project->isEmpty("QMAKE_POST_LINK"))
|
|
|
|
t << "\n\t" << var("QMAKE_POST_LINK");
|
|
|
|
}
|
2011-04-27 10:05:43 +00:00
|
|
|
t << endl << endl;
|
|
|
|
}
|
|
|
|
} else if(!project->isActiveConfig("staticlib")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString destdir = unescapeFilePath(project->first("DESTDIR").toQString()), incr_deps;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("QMAKE_BUNDLE")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString bundle_loc = project->first("QMAKE_BUNDLE_LOCATION").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!bundle_loc.isEmpty() && !bundle_loc.startsWith("/"))
|
|
|
|
bundle_loc.prepend("/");
|
|
|
|
if(!bundle_loc.endsWith("/"))
|
|
|
|
bundle_loc += "/";
|
|
|
|
destdir += project->first("QMAKE_BUNDLE") + bundle_loc;
|
|
|
|
}
|
|
|
|
destdir = escapeFilePath(destdir);
|
|
|
|
|
|
|
|
if(do_incremental) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString s_ext = project->first("QMAKE_EXTENSION_SHLIB");
|
2011-04-27 10:05:43 +00:00
|
|
|
QString incr_target = var("QMAKE_ORIG_TARGET").replace(
|
|
|
|
QRegExp("\\." + s_ext), "").replace(QRegExp("^lib"), "") + "_incremental";
|
|
|
|
if(incr_target.indexOf(Option::dir_sep) != -1)
|
|
|
|
incr_target = incr_target.right(incr_target.length() -
|
|
|
|
(incr_target.lastIndexOf(Option::dir_sep) + 1));
|
|
|
|
incr_target = escapeFilePath(incr_target);
|
|
|
|
|
|
|
|
if(project->first("QMAKE_INCREMENTAL_STYLE") == "ld") {
|
|
|
|
QString incr_target_dir = escapeFilePath(var("OBJECTS_DIR") + incr_target + Option::obj_ext);
|
|
|
|
//actual target
|
|
|
|
const QString link_deps = "$(OBJECTS) ";
|
|
|
|
t << incr_target_dir << ": " << link_deps << "\n\t"
|
|
|
|
<< "ld -r -o " << incr_target_dir << " " << link_deps << endl;
|
|
|
|
//communicated below
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &cmd = project->values("QMAKE_LINK_SHLIB_CMD");
|
|
|
|
cmd[0] = cmd.at(0).toQString().replace("$(OBJECTS) ", "$(INCREMENTAL_OBJECTS)"); //ick
|
2011-04-27 10:05:43 +00:00
|
|
|
cmd.append(incr_target_dir);
|
|
|
|
deps.prepend(incr_target_dir + " ");
|
|
|
|
incr_deps = "$(INCREMENTAL_OBJECTS)";
|
|
|
|
} else {
|
|
|
|
//actual target
|
|
|
|
QString incr_target_dir = escapeFilePath(destdir + "lib" + incr_target + "." + s_ext);
|
|
|
|
QString incr_lflags = var("QMAKE_LFLAGS_SHLIB") + " ";
|
|
|
|
if(!project->isEmpty("QMAKE_LFLAGS_INCREMENTAL"))
|
|
|
|
incr_lflags += var("QMAKE_LFLAGS_INCREMENTAL") + " ";
|
|
|
|
if(project->isActiveConfig("debug"))
|
|
|
|
incr_lflags += var("QMAKE_LFLAGS_DEBUG");
|
|
|
|
else
|
|
|
|
incr_lflags += var("QMAKE_LFLAGS_RELEASE");
|
|
|
|
t << incr_target_dir << ": $(INCREMENTAL_OBJECTS)" << "\n\t";
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << mkdir_p_asstring(destdir) << "\n\t";
|
|
|
|
t << "$(LINK) " << incr_lflags << " -o "<< incr_target_dir <<
|
|
|
|
" $(INCREMENTAL_OBJECTS)" << endl;
|
|
|
|
//communicated below
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &cmd = project->values("QMAKE_LINK_SHLIB_CMD");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!destdir.isEmpty())
|
|
|
|
cmd.append(" -L" + destdir);
|
|
|
|
cmd.append(" -l" + incr_target);
|
|
|
|
deps.prepend(incr_target_dir + " ");
|
|
|
|
incr_deps = "$(OBJECTS)";
|
|
|
|
}
|
|
|
|
|
|
|
|
t << "all: " << " " << escapeDependencyPath(deps) << " " << valGlue(escapeDependencyPaths(project->values("ALL_DEPS")),""," "," ")
|
|
|
|
<< " " << destdir << "$(TARGET)" << endl << endl;
|
|
|
|
|
|
|
|
//real target
|
|
|
|
t << destdir << "$(TARGET): " << var("PRE_TARGETDEPS") << " "
|
|
|
|
<< incr_deps << " $(SUBLIBS) " << target_deps << " " << var("POST_TARGETDEPS");
|
|
|
|
} else {
|
|
|
|
t << "all: " << escapeDependencyPath(deps) << " " << valGlue(escapeDependencyPaths(project->values("ALL_DEPS")),""," "," ") << " " <<
|
|
|
|
destdir << "$(TARGET)" << endl << endl;
|
|
|
|
t << destdir << "$(TARGET): " << var("PRE_TARGETDEPS")
|
|
|
|
<< " $(OBJECTS) $(SUBLIBS) $(OBJCOMP) " << target_deps
|
|
|
|
<< " " << var("POST_TARGETDEPS");
|
|
|
|
}
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << "\n\t" << mkdir_p_asstring(destdir);
|
|
|
|
if(!project->isEmpty("QMAKE_PRE_LINK"))
|
|
|
|
t << "\n\t" << var("QMAKE_PRE_LINK");
|
|
|
|
|
|
|
|
if(project->isActiveConfig("compile_libtool")) {
|
|
|
|
t << "\n\t"
|
|
|
|
<< var("QMAKE_LINK_SHLIB_CMD");
|
|
|
|
} else if(project->isActiveConfig("plugin")) {
|
|
|
|
t << "\n\t"
|
|
|
|
<< "-$(DEL_FILE) $(TARGET)" << "\n\t"
|
|
|
|
<< var("QMAKE_LINK_SHLIB_CMD");
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << "\n\t"
|
|
|
|
<< "-$(MOVE) $(TARGET) " << destdir;
|
|
|
|
if(!project->isEmpty("QMAKE_POST_LINK"))
|
|
|
|
t << "\n\t" << var("QMAKE_POST_LINK");
|
|
|
|
t << endl << endl;
|
|
|
|
} else if(!project->isEmpty("QMAKE_BUNDLE")) {
|
|
|
|
t << "\n\t"
|
|
|
|
<< "-$(DEL_FILE) $(TARGET) $(TARGET0) $(DESTDIR)$(TARGET0)" << "\n\t"
|
|
|
|
<< var("QMAKE_LINK_SHLIB_CMD") << "\n\t"
|
|
|
|
<< mkdir_p_asstring("\"`dirname $(DESTDIR)$(TARGETD)`\"", false) << "\n\t"
|
|
|
|
<< "-$(MOVE) $(TARGET) $(DESTDIR)$(TARGETD)" << "\n\t"
|
|
|
|
<< mkdir_p_asstring("\"`dirname $(DESTDIR)$(TARGET0)`\"", false) << "\n\t"
|
|
|
|
<< varGlue("QMAKE_LN_SHLIB","-"," "," Versions/" +
|
|
|
|
project->first("QMAKE_FRAMEWORK_VERSION") +
|
|
|
|
"/$(TARGET) $(DESTDIR)$(TARGET0)") << "\n\t"
|
|
|
|
<< "-$(DEL_FILE) " << destdir << "Versions/Current" << "\n\t"
|
|
|
|
<< varGlue("QMAKE_LN_SHLIB","-"," ", " " + project->first("QMAKE_FRAMEWORK_VERSION") +
|
|
|
|
" " + destdir + "Versions/Current") << "\n\t";
|
|
|
|
if(!project->isEmpty("QMAKE_POST_LINK"))
|
|
|
|
t << "\n\t" << var("QMAKE_POST_LINK");
|
|
|
|
t << endl << endl;
|
|
|
|
} else if(project->isEmpty("QMAKE_HPUX_SHLIB")) {
|
|
|
|
t << "\n\t"
|
|
|
|
<< "-$(DEL_FILE) $(TARGET) $(TARGET0) $(TARGET1) $(TARGET2)" << "\n\t"
|
|
|
|
<< var("QMAKE_LINK_SHLIB_CMD") << "\n\t";
|
|
|
|
t << varGlue("QMAKE_LN_SHLIB","-"," "," $(TARGET) $(TARGET0)") << "\n\t"
|
|
|
|
<< varGlue("QMAKE_LN_SHLIB","-"," "," $(TARGET) $(TARGET1)") << "\n\t"
|
|
|
|
<< varGlue("QMAKE_LN_SHLIB","-"," "," $(TARGET) $(TARGET2)");
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << "\n\t"
|
|
|
|
<< "-$(DEL_FILE) " << destdir << "$(TARGET)\n\t"
|
|
|
|
<< "-$(DEL_FILE) " << destdir << "$(TARGET0)\n\t"
|
|
|
|
<< "-$(DEL_FILE) " << destdir << "$(TARGET1)\n\t"
|
|
|
|
<< "-$(DEL_FILE) " << destdir << "$(TARGET2)\n\t"
|
|
|
|
<< "-$(MOVE) $(TARGET) $(TARGET0) $(TARGET1) $(TARGET2) " << destdir;
|
|
|
|
if(!project->isEmpty("QMAKE_POST_LINK"))
|
|
|
|
t << "\n\t" << var("QMAKE_POST_LINK");
|
|
|
|
t << endl << endl;
|
|
|
|
} else {
|
|
|
|
t << "\n\t"
|
|
|
|
<< "-$(DEL_FILE) $(TARGET) $(TARGET0)" << "\n\t"
|
|
|
|
<< var("QMAKE_LINK_SHLIB_CMD") << "\n\t";
|
|
|
|
t << varGlue("QMAKE_LN_SHLIB",""," "," $(TARGET) $(TARGET0)");
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << "\n\t"
|
|
|
|
<< "-$(DEL_FILE) " << destdir << "$(TARGET)\n\t"
|
|
|
|
<< "-$(DEL_FILE) " << destdir << "$(TARGET0)\n\t"
|
|
|
|
<< "-$(MOVE) $(TARGET) $(TARGET0) " << destdir;
|
|
|
|
if(!project->isEmpty("QMAKE_POST_LINK"))
|
|
|
|
t << "\n\t" << var("QMAKE_POST_LINK");
|
|
|
|
t << endl << endl;
|
|
|
|
}
|
|
|
|
t << endl << endl;
|
|
|
|
|
|
|
|
if (! project->isActiveConfig("plugin")) {
|
|
|
|
t << "staticlib: $(TARGETA)" << endl << endl;
|
|
|
|
t << "$(TARGETA): " << var("PRE_TARGETDEPS") << " $(OBJECTS) $(OBJCOMP)";
|
|
|
|
if(do_incremental)
|
|
|
|
t << " $(INCREMENTAL_OBJECTS)";
|
|
|
|
t << " " << var("POST_TARGETDEPS") << "\n\t"
|
|
|
|
<< "-$(DEL_FILE) $(TARGETA) " << "\n\t"
|
|
|
|
<< var("QMAKE_AR_CMD");
|
|
|
|
if(do_incremental)
|
|
|
|
t << " $(INCREMENTAL_OBJECTS)";
|
|
|
|
if(!project->isEmpty("QMAKE_RANLIB"))
|
|
|
|
t << "\n\t" << "$(RANLIB) $(TARGETA)";
|
|
|
|
t << endl << endl;
|
|
|
|
}
|
|
|
|
} else {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString destdir = project->first("DESTDIR").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
t << "all: " << escapeDependencyPath(deps) << " " << valGlue(escapeDependencyPaths(project->values("ALL_DEPS")),""," "," ") << destdir << "$(TARGET) "
|
|
|
|
<< varGlue("QMAKE_AR_SUBLIBS", destdir, " " + destdir, "") << "\n\n"
|
|
|
|
<< "staticlib: " << destdir << "$(TARGET)" << "\n\n";
|
|
|
|
if(project->isEmpty("QMAKE_AR_SUBLIBS")) {
|
|
|
|
t << destdir << "$(TARGET): " << var("PRE_TARGETDEPS")
|
|
|
|
<< " $(OBJECTS) $(OBJCOMP) " << var("POST_TARGETDEPS") << "\n\t";
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << mkdir_p_asstring(destdir) << "\n\t";
|
|
|
|
t << "-$(DEL_FILE) $(TARGET)" << "\n\t"
|
|
|
|
<< var("QMAKE_AR_CMD") << "\n";
|
|
|
|
if(!project->isEmpty("QMAKE_POST_LINK"))
|
|
|
|
t << "\t" << var("QMAKE_POST_LINK") << "\n";
|
|
|
|
if(!project->isEmpty("QMAKE_RANLIB"))
|
|
|
|
t << "\t" << "$(RANLIB) $(TARGET)" << "\n";
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << "\t" << "-$(DEL_FILE) " << destdir << "$(TARGET)" << "\n"
|
|
|
|
<< "\t" << "-$(MOVE) $(TARGET) " << destdir << "\n";
|
|
|
|
} else {
|
|
|
|
int max_files = project->first("QMAKE_MAX_FILES_PER_AR").toInt();
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList objs = project->values("OBJECTS") + project->values("OBJCOMP"),
|
2011-04-27 10:05:43 +00:00
|
|
|
libs = project->values("QMAKE_AR_SUBLIBS");
|
|
|
|
libs.prepend("$(TARGET)");
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::Iterator libit = libs.begin(), objit = objs.begin();
|
|
|
|
libit != libs.end(); ++libit) {
|
|
|
|
ProStringList build;
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int cnt = 0; cnt < max_files && objit != objs.end(); ++objit, cnt++)
|
|
|
|
build << (*objit);
|
|
|
|
QString ar;
|
|
|
|
if((*libit) == "$(TARGET)") {
|
|
|
|
t << destdir << "$(TARGET): " << var("PRE_TARGETDEPS")
|
|
|
|
<< " " << var("POST_TARGETDEPS") << valList(build) << "\n\t";
|
2012-09-06 10:21:38 +00:00
|
|
|
ar = project->first("QMAKE_AR_CMD").toQString();
|
2012-05-18 18:00:23 +00:00
|
|
|
ar = ar.replace("$(OBJECTS)", build.join(' '));
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
|
|
|
t << (*libit) << ": " << valList(build) << "\n\t";
|
2012-05-18 18:00:23 +00:00
|
|
|
ar = "$(AR) " + (*libit) + " " + build.join(' ');
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << mkdir_p_asstring(destdir) << "\n\t";
|
|
|
|
t << "-$(DEL_FILE) " << (*libit) << "\n\t"
|
|
|
|
<< ar << "\n";
|
|
|
|
if(!project->isEmpty("QMAKE_POST_LINK"))
|
|
|
|
t << "\t" << var("QMAKE_POST_LINK") << "\n";
|
|
|
|
if(!project->isEmpty("QMAKE_RANLIB"))
|
|
|
|
t << "\t" << "$(RANLIB) " << (*libit) << "\n";
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << "\t" << "-$(DEL_FILE) " << destdir << (*libit) << "\n"
|
|
|
|
<< "\t" << "-$(MOVE) " << (*libit) << " " << destdir << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t << endl << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
writeMakeQmake(t);
|
|
|
|
if(project->isEmpty("QMAKE_FAILED_REQUIREMENTS") && !project->isActiveConfig("no_autoqmake")) {
|
2012-12-21 19:48:14 +00:00
|
|
|
QStringList meta_files;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(project->isActiveConfig("create_libtool") && project->first("TEMPLATE") == "lib" &&
|
|
|
|
!project->isActiveConfig("compile_libtool")) { //libtool
|
|
|
|
meta_files += libtoolFileName();
|
|
|
|
}
|
|
|
|
if(project->isActiveConfig("create_pc") && project->first("TEMPLATE") == "lib") { //pkg-config
|
|
|
|
meta_files += pkgConfigFileName();
|
|
|
|
}
|
|
|
|
if(!meta_files.isEmpty())
|
2012-12-21 19:48:14 +00:00
|
|
|
t << escapeDependencyPaths(meta_files).join(" ") << ": " << "\n\t"
|
2011-04-27 10:05:43 +00:00
|
|
|
<< "@$(QMAKE) -prl " << buildArgs() << " " << project->projectFile() << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!project->first("QMAKE_PKGINFO").isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString pkginfo = escapeFilePath(project->first("QMAKE_PKGINFO"));
|
2011-04-27 10:05:43 +00:00
|
|
|
QString destdir = escapeFilePath(project->first("DESTDIR") + project->first("QMAKE_BUNDLE") + "/Contents");
|
|
|
|
t << pkginfo << ": " << "\n\t";
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << mkdir_p_asstring(destdir) << "\n\t";
|
|
|
|
t << "@$(DEL_FILE) " << pkginfo << "\n\t"
|
|
|
|
<< "@echo \"APPL"
|
|
|
|
<< (project->isEmpty("QMAKE_PKGINFO_TYPEINFO") ? QString::fromLatin1("????") : project->first("QMAKE_PKGINFO_TYPEINFO").left(4))
|
|
|
|
<< "\" >" << pkginfo << endl;
|
|
|
|
}
|
|
|
|
if(!project->first("QMAKE_BUNDLE_RESOURCE_FILE").isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString resources = escapeFilePath(project->first("QMAKE_BUNDLE_RESOURCE_FILE"));
|
2011-04-27 10:05:43 +00:00
|
|
|
QString destdir = escapeFilePath(project->first("DESTDIR") + project->first("QMAKE_BUNDLE") + "/Contents/Resources");
|
|
|
|
t << resources << ": " << "\n\t";
|
|
|
|
t << mkdir_p_asstring(destdir) << "\n\t";
|
|
|
|
t << "@touch " << resources << "\n\t" << endl;
|
|
|
|
}
|
|
|
|
if(!project->isEmpty("QMAKE_BUNDLE")) {
|
|
|
|
//copy the plist
|
2012-09-06 10:21:38 +00:00
|
|
|
QString info_plist = escapeFilePath(fileFixify(project->first("QMAKE_INFO_PLIST").toQString())),
|
|
|
|
info_plist_out = escapeFilePath(project->first("QMAKE_INFO_PLIST_OUT").toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
QString destdir = info_plist_out.section(Option::dir_sep, 0, -2);
|
|
|
|
t << info_plist_out << ": " << "\n\t";
|
|
|
|
if(!destdir.isEmpty())
|
|
|
|
t << mkdir_p_asstring(destdir) << "\n\t";
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList commonSedArgs;
|
2011-04-27 10:05:43 +00:00
|
|
|
if (!project->values("VERSION").isEmpty())
|
|
|
|
commonSedArgs << "-e \"s,@SHORT_VERSION@," << project->first("VER_MAJ") << "." << project->first("VER_MIN") << ",g\" ";
|
|
|
|
commonSedArgs << "-e \"s,@TYPEINFO@,"<< (project->isEmpty("QMAKE_PKGINFO_TYPEINFO") ?
|
|
|
|
QString::fromLatin1("????") : project->first("QMAKE_PKGINFO_TYPEINFO").left(4)) << ",g\" ";
|
|
|
|
if(project->first("TEMPLATE") == "app") {
|
|
|
|
QString icon = fileFixify(var("ICON"));
|
|
|
|
t << "@$(DEL_FILE) " << info_plist_out << "\n\t"
|
|
|
|
<< "@sed ";
|
2012-09-06 10:21:38 +00:00
|
|
|
foreach (const ProString &arg, commonSedArgs)
|
2011-04-27 10:05:43 +00:00
|
|
|
t << arg;
|
|
|
|
t << "-e \"s,@ICON@," << icon.section(Option::dir_sep, -1) << ",g\" "
|
|
|
|
<< "-e \"s,@EXECUTABLE@," << var("QMAKE_ORIG_TARGET") << ",g\" "
|
|
|
|
<< "-e \"s,@TYPEINFO@,"<< (project->isEmpty("QMAKE_PKGINFO_TYPEINFO") ?
|
|
|
|
QString::fromLatin1("????") : project->first("QMAKE_PKGINFO_TYPEINFO").left(4)) << ",g\" "
|
|
|
|
<< "" << info_plist << " >" << info_plist_out << endl;
|
|
|
|
//copy the icon
|
|
|
|
if(!project->isEmpty("ICON")) {
|
|
|
|
QString dir = project->first("DESTDIR") + project->first("QMAKE_BUNDLE") + "/Contents/Resources/";
|
|
|
|
const QString icon_path = escapeFilePath(dir + icon.section(Option::dir_sep, -1));
|
|
|
|
t << icon_path << ": " << icon << "\n\t"
|
|
|
|
<< mkdir_p_asstring(dir) << "\n\t"
|
|
|
|
<< "@$(DEL_FILE) " << icon_path << "\n\t"
|
|
|
|
<< "@$(COPY_FILE) " << escapeFilePath(icon) << " " << icon_path << endl;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
t << "@$(DEL_FILE) " << info_plist_out << "\n\t"
|
|
|
|
<< "@sed ";
|
2012-09-06 10:21:38 +00:00
|
|
|
foreach (const ProString &arg, commonSedArgs)
|
2011-04-27 10:05:43 +00:00
|
|
|
t << arg;
|
|
|
|
t << "-e \"s,@LIBRARY@," << var("QMAKE_ORIG_TARGET") << ",g\" "
|
|
|
|
<< "-e \"s,@TYPEINFO@,"
|
|
|
|
<< (project->isEmpty("QMAKE_PKGINFO_TYPEINFO") ?
|
|
|
|
QString::fromLatin1("????") : project->first("QMAKE_PKGINFO_TYPEINFO").left(4)) << ",g\" "
|
|
|
|
<< "" << info_plist << " >" << info_plist_out << endl;
|
|
|
|
}
|
|
|
|
//copy other data
|
|
|
|
if(!project->isEmpty("QMAKE_BUNDLE_DATA")) {
|
|
|
|
QString bundle_dir = project->first("DESTDIR") + project->first("QMAKE_BUNDLE") + "/";
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &bundle_data = project->values("QMAKE_BUNDLE_DATA");
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < bundle_data.count(); i++) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &files = project->values(ProKey(bundle_data[i] + ".files"));
|
2011-04-27 10:05:43 +00:00
|
|
|
QString path = bundle_dir;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey vkey(bundle_data[i] + ".version");
|
|
|
|
const ProKey pkey(bundle_data[i] + ".path");
|
|
|
|
if (!project->isEmpty(vkey)) {
|
|
|
|
QString version = project->first(vkey) + "/" +
|
2011-04-27 10:05:43 +00:00
|
|
|
project->first("QMAKE_FRAMEWORK_VERSION") + "/";
|
2012-09-06 10:21:38 +00:00
|
|
|
t << Option::fixPathToLocalOS(path + project->first(pkey)) << ": " << "\n\t"
|
2011-04-27 10:05:43 +00:00
|
|
|
<< mkdir_p_asstring(path) << "\n\t"
|
2012-09-06 10:21:38 +00:00
|
|
|
<< "@$(SYMLINK) " << version << project->first(pkey) << " " << path << endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
path += version;
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
path += project->first(pkey).toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
path = Option::fixPathToLocalOS(path);
|
|
|
|
for(int file = 0; file < files.count(); file++) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString fn = files.at(file).toQString();
|
|
|
|
QString src = fileFixify(fn, FileFixifyAbsolute);
|
2011-04-27 10:05:43 +00:00
|
|
|
if (!QFile::exists(src))
|
2012-09-06 10:21:38 +00:00
|
|
|
src = fn;
|
2011-04-27 10:05:43 +00:00
|
|
|
src = escapeFilePath(src);
|
2012-09-06 10:21:38 +00:00
|
|
|
const QString dst = escapeFilePath(path + Option::dir_sep + fileInfo(fn).fileName());
|
2011-04-27 10:05:43 +00:00
|
|
|
t << dst << ": " << src << "\n\t"
|
|
|
|
<< mkdir_p_asstring(path) << "\n\t";
|
2012-09-06 10:21:38 +00:00
|
|
|
QFileInfo fi(fileInfo(fn));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(fi.isDir())
|
|
|
|
t << "@$(DEL_FILE) -r " << dst << "\n\t"
|
|
|
|
<< "@$(COPY_DIR) " << src << " " << dst << endl;
|
|
|
|
else
|
|
|
|
t << "@$(DEL_FILE) " << dst << "\n\t"
|
|
|
|
<< "@$(COPY_FILE) " << src << " " << dst << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString ddir;
|
|
|
|
ProString packageName(project->first("QMAKE_ORIG_TARGET"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isActiveConfig("no_dist_version"))
|
|
|
|
packageName += var("VERSION");
|
|
|
|
if (project->isEmpty("QMAKE_DISTDIR"))
|
|
|
|
ddir = packageName;
|
|
|
|
else
|
|
|
|
ddir = project->first("QMAKE_DISTDIR");
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
QString ddir_c = escapeFilePath(fileFixify((project->isEmpty("OBJECTS_DIR") ? ProString(".tmp/") :
|
2011-04-27 10:05:43 +00:00
|
|
|
project->first("OBJECTS_DIR")) + ddir,
|
|
|
|
Option::output_dir, Option::output_dir));
|
|
|
|
t << "dist: " << "\n\t"
|
|
|
|
<< mkdir_p_asstring(ddir_c) << "\n\t"
|
|
|
|
<< "$(COPY_FILE) --parents $(SOURCES) $(DIST) " << ddir_c << Option::dir_sep << " && ";
|
|
|
|
if(!project->isEmpty("QMAKE_EXTRA_COMPILERS")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &quc = project->values("QMAKE_EXTRA_COMPILERS");
|
|
|
|
for (ProStringList::ConstIterator it = quc.begin(); it != quc.end(); ++it) {
|
|
|
|
const ProStringList &var = project->values(ProKey(*it + ".input"));
|
|
|
|
for (ProStringList::ConstIterator var_it = var.begin(); var_it != var.end(); ++var_it) {
|
|
|
|
const ProStringList &val = project->values((*var_it).toKey());
|
2011-04-27 10:05:43 +00:00
|
|
|
if(val.isEmpty())
|
|
|
|
continue;
|
2012-05-18 18:00:23 +00:00
|
|
|
t << "$(COPY_FILE) --parents " << val.join(' ') << " " << ddir_c << Option::dir_sep << " && ";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!project->isEmpty("TRANSLATIONS"))
|
|
|
|
t << "$(COPY_FILE) --parents " << var("TRANSLATIONS") << " " << ddir_c << Option::dir_sep << " && ";
|
|
|
|
t << "(cd `dirname " << ddir_c << "` && "
|
|
|
|
<< "$(TAR) " << packageName << ".tar " << ddir << " && "
|
|
|
|
<< "$(COMPRESS) " << packageName << ".tar) && "
|
|
|
|
<< "$(MOVE) `dirname " << ddir_c << "`" << Option::dir_sep << packageName << ".tar.gz . && "
|
|
|
|
<< "$(DEL_FILE) -r " << ddir_c
|
|
|
|
<< endl << endl;
|
|
|
|
|
|
|
|
t << endl;
|
|
|
|
|
|
|
|
QString clean_targets = "compiler_clean " + var("CLEAN_DEPS");
|
|
|
|
if(do_incremental) {
|
|
|
|
t << "incrclean:" << "\n";
|
|
|
|
if(src_incremental)
|
|
|
|
t << "\t-$(DEL_FILE) $(INCREMENTAL_OBJECTS)" << "\n";
|
|
|
|
t << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
t << "clean:" << clean_targets << "\n\t";
|
|
|
|
if(!project->isEmpty("OBJECTS")) {
|
|
|
|
if(project->isActiveConfig("compile_libtool"))
|
|
|
|
t << "-$(LIBTOOL) --mode=clean $(DEL_FILE) $(OBJECTS)" << "\n\t";
|
|
|
|
else
|
|
|
|
t << "-$(DEL_FILE) $(OBJECTS)" << "\n\t";
|
|
|
|
}
|
|
|
|
if(doPrecompiledHeaders() && !project->isEmpty("PRECOMPILED_HEADER")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList precomp_files;
|
|
|
|
ProString precomph_out_dir;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
if(!project->isEmpty("PRECOMPILED_DIR"))
|
|
|
|
precomph_out_dir = project->first("PRECOMPILED_DIR");
|
|
|
|
precomph_out_dir += project->first("QMAKE_ORIG_TARGET");
|
|
|
|
if (!project->isActiveConfig("clang_pch_style"))
|
|
|
|
precomph_out_dir += project->first("QMAKE_PCH_OUTPUT_EXT");
|
|
|
|
|
|
|
|
if (project->isActiveConfig("icc_pch_style")) {
|
|
|
|
// icc style
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString pchBaseName = project->first("QMAKE_ORIG_TARGET");
|
|
|
|
ProString pchOutput;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("PRECOMPILED_DIR"))
|
|
|
|
pchOutput = project->first("PRECOMPILED_DIR");
|
|
|
|
pchOutput += pchBaseName + project->first("QMAKE_PCH_OUTPUT_EXT");
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString sourceFile = pchOutput + Option::cpp_ext.first();
|
|
|
|
ProString objectFile = createObjectList(ProStringList(sourceFile)).first();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
precomp_files << precomph_out_dir << sourceFile << objectFile;
|
|
|
|
} else {
|
|
|
|
// gcc style (including clang_pch_style)
|
|
|
|
precomph_out_dir += Option::dir_sep;
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString header_prefix = project->first("QMAKE_PRECOMP_PREFIX");
|
|
|
|
ProString header_suffix = project->isActiveConfig("clang_pch_style")
|
2011-04-27 10:05:43 +00:00
|
|
|
? project->first("QMAKE_PCH_OUTPUT_EXT") : "";
|
|
|
|
|
|
|
|
if(!project->isEmpty("QMAKE_CFLAGS_PRECOMPILE"))
|
|
|
|
precomp_files += precomph_out_dir + header_prefix + "c" + header_suffix;
|
|
|
|
if(!project->isEmpty("QMAKE_CXXFLAGS_PRECOMPILE"))
|
|
|
|
precomp_files += precomph_out_dir + header_prefix + "c++" + header_suffix;
|
|
|
|
if(project->isActiveConfig("objective_c")) {
|
|
|
|
if(!project->isEmpty("QMAKE_OBJCFLAGS_PRECOMPILE"))
|
|
|
|
precomp_files += precomph_out_dir + header_prefix + "objective-c" + header_suffix;
|
|
|
|
if(!project->isEmpty("QMAKE_OBJCXXFLAGS_PRECOMPILE"))
|
|
|
|
precomp_files += precomph_out_dir + header_prefix + "objective-c++" + header_suffix;
|
|
|
|
}
|
|
|
|
}
|
2012-05-18 18:00:23 +00:00
|
|
|
t << "-$(DEL_FILE) " << precomp_files.join(' ') << "\n\t";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
if(!project->isEmpty("IMAGES"))
|
|
|
|
t << varGlue("QMAKE_IMAGE_COLLECTION", "\t-$(DEL_FILE) ", " ", "") << "\n\t";
|
|
|
|
if(src_incremental)
|
|
|
|
t << "-$(DEL_FILE) $(INCREMENTAL_OBJECTS)" << "\n\t";
|
|
|
|
t << varGlue("QMAKE_CLEAN","-$(DEL_FILE) "," ","\n\t")
|
|
|
|
<< "-$(DEL_FILE) *~ core *.core" << "\n"
|
|
|
|
<< varGlue("CLEAN_FILES","\t-$(DEL_FILE) "," ","") << endl << endl;
|
|
|
|
t << "####### Sub-libraries" << endl << endl;
|
|
|
|
if (!project->values("SUBLIBS").isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString libdir = "tmp/";
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("SUBLIBS_DIR"))
|
|
|
|
libdir = project->first("SUBLIBS_DIR");
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &l = project->values("SUBLIBS");
|
2011-04-27 10:05:43 +00:00
|
|
|
for(it = l.begin(); it != l.end(); ++it)
|
|
|
|
t << libdir << project->first("QMAKE_PREFIX_STATICLIB") << (*it) << "."
|
|
|
|
<< project->first("QMAKE_EXTENSION_STATICLIB") << ":\n\t"
|
2012-09-06 10:21:38 +00:00
|
|
|
<< var(ProKey("MAKELIB" + *it)) << endl << endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString destdir = project->first("DESTDIR");
|
|
|
|
if (!destdir.isEmpty() && !destdir.endsWith(Option::dir_sep))
|
2011-04-27 10:05:43 +00:00
|
|
|
destdir += Option::dir_sep;
|
|
|
|
t << "distclean: " << "clean\n";
|
|
|
|
if(!project->isEmpty("QMAKE_BUNDLE")) {
|
|
|
|
QString bundlePath = escapeFilePath(destdir + project->first("QMAKE_BUNDLE"));
|
|
|
|
t << "\t-$(DEL_FILE) -r " << bundlePath << endl;
|
|
|
|
} else if(project->isActiveConfig("compile_libtool")) {
|
|
|
|
t << "\t-$(LIBTOOL) --mode=clean $(DEL_FILE) " << "$(TARGET)" << endl;
|
|
|
|
} else if(!project->isActiveConfig("staticlib") && project->values("QMAKE_APP_FLAG").isEmpty() &&
|
|
|
|
!project->isActiveConfig("plugin")) {
|
|
|
|
t << "\t-$(DEL_FILE) " << destdir << "$(TARGET)" << " " << endl;
|
2011-11-04 12:51:20 +00:00
|
|
|
t << "\t-$(DEL_FILE) " << destdir << "$(TARGET0) " << destdir << "$(TARGET1) "
|
|
|
|
<< destdir << "$(TARGET2) $(TARGETA)" << endl;
|
2011-04-27 10:05:43 +00:00
|
|
|
} else {
|
|
|
|
t << "\t-$(DEL_FILE) " << "$(TARGET)" << " " << endl;
|
|
|
|
}
|
|
|
|
t << varGlue("QMAKE_DISTCLEAN","\t-$(DEL_FILE) "," ","\n");
|
|
|
|
{
|
|
|
|
QString ofile = Option::fixPathToTargetOS(fileFixify(Option::output.fileName()));
|
|
|
|
if(!ofile.isEmpty())
|
|
|
|
t << "\t-$(DEL_FILE) " << ofile << endl;
|
|
|
|
}
|
|
|
|
t << endl << endl;
|
|
|
|
|
|
|
|
if(doPrecompiledHeaders() && !project->isEmpty("PRECOMPILED_HEADER")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString pchInput = project->first("PRECOMPILED_HEADER").toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
t << "###### Prefix headers" << endl;
|
|
|
|
QString comps[] = { "C", "CXX", "OBJC", "OBJCXX", QString() };
|
|
|
|
for(int i = 0; !comps[i].isNull(); i++) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString pchFlags = var(ProKey("QMAKE_" + comps[i] + "FLAGS_PRECOMPILE"));
|
2011-04-27 10:05:43 +00:00
|
|
|
if(pchFlags.isEmpty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
QString cflags;
|
|
|
|
if(comps[i] == "OBJC" || comps[i] == "OBJCXX")
|
|
|
|
cflags += " $(CFLAGS)";
|
|
|
|
else
|
|
|
|
cflags += " $(" + comps[i] + "FLAGS)";
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString pchBaseName = project->first("QMAKE_ORIG_TARGET");
|
|
|
|
ProString pchOutput;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("PRECOMPILED_DIR"))
|
|
|
|
pchOutput = project->first("PRECOMPILED_DIR");
|
|
|
|
pchOutput += pchBaseName;
|
|
|
|
if (!project->isActiveConfig("clang_pch_style"))
|
|
|
|
pchOutput += project->first("QMAKE_PCH_OUTPUT_EXT");
|
|
|
|
|
|
|
|
if (project->isActiveConfig("icc_pch_style")) {
|
|
|
|
// icc style
|
|
|
|
QString sourceFile = pchOutput + Option::cpp_ext.first();
|
2012-09-06 10:21:38 +00:00
|
|
|
QString objectFile = createObjectList(ProStringList(sourceFile)).first().toQString();
|
2011-04-27 10:05:43 +00:00
|
|
|
t << pchOutput << ": " << pchInput << " " << findDependencies(pchInput).join(" \\\n\t\t")
|
|
|
|
<< "\n\techo \"// Automatically generated, do not modify\" > " << sourceFile
|
|
|
|
<< "\n\trm -f " << pchOutput;
|
|
|
|
|
|
|
|
pchFlags = pchFlags.replace("${QMAKE_PCH_TEMP_SOURCE}", sourceFile)
|
|
|
|
.replace("${QMAKE_PCH_TEMP_OBJECT}", objectFile);
|
|
|
|
} else {
|
|
|
|
// gcc style (including clang_pch_style)
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString header_prefix = project->first("QMAKE_PRECOMP_PREFIX");
|
|
|
|
ProString header_suffix = project->isActiveConfig("clang_pch_style")
|
2011-04-27 10:05:43 +00:00
|
|
|
? project->first("QMAKE_PCH_OUTPUT_EXT") : "";
|
|
|
|
pchOutput += Option::dir_sep;
|
2012-09-06 10:21:38 +00:00
|
|
|
QString pchOutputDir = pchOutput.toQString(), pchOutputFile;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
if(comps[i] == "C") {
|
|
|
|
pchOutputFile = "c";
|
|
|
|
} else if(comps[i] == "CXX") {
|
|
|
|
pchOutputFile = "c++";
|
|
|
|
} else if(project->isActiveConfig("objective_c")) {
|
|
|
|
if(comps[i] == "OBJC")
|
|
|
|
pchOutputFile = "objective-c";
|
|
|
|
else if(comps[i] == "OBJCXX")
|
|
|
|
pchOutputFile = "objective-c++";
|
|
|
|
}
|
|
|
|
if(pchOutputFile.isEmpty())
|
|
|
|
continue;
|
|
|
|
pchOutput += header_prefix + pchOutputFile + header_suffix;
|
|
|
|
|
|
|
|
t << pchOutput << ": " << pchInput << " " << findDependencies(pchInput).join(" \\\n\t\t")
|
|
|
|
<< "\n\t" << mkdir_p_asstring(pchOutputDir);
|
|
|
|
}
|
|
|
|
pchFlags = pchFlags.replace("${QMAKE_PCH_INPUT}", pchInput)
|
2012-09-06 10:21:38 +00:00
|
|
|
.replace("${QMAKE_PCH_OUTPUT_BASE}", pchBaseName.toQString())
|
|
|
|
.replace("${QMAKE_PCH_OUTPUT}", pchOutput.toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QString compiler;
|
|
|
|
if(comps[i] == "C" || comps[i] == "OBJC" || comps[i] == "OBJCXX")
|
|
|
|
compiler = "$(CC)";
|
|
|
|
else
|
|
|
|
compiler = "$(CXX)";
|
|
|
|
|
|
|
|
// compile command
|
|
|
|
t << "\n\t" << compiler << cflags << " $(INCPATH) " << pchFlags << endl << endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
writeExtraTargets(t);
|
|
|
|
writeExtraCompilerTargets(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnixMakefileGenerator::init2()
|
|
|
|
{
|
|
|
|
//version handling
|
|
|
|
if(project->isEmpty("VERSION"))
|
|
|
|
project->values("VERSION").append("1.0." +
|
|
|
|
(project->isEmpty("VER_PAT") ? QString("0") :
|
|
|
|
project->first("VER_PAT")));
|
2012-09-06 10:21:38 +00:00
|
|
|
QStringList l = project->first("VERSION").toQString().split('.');
|
2011-04-27 10:05:43 +00:00
|
|
|
l << "0" << "0"; //make sure there are three
|
|
|
|
project->values("VER_MAJ").append(l[0]);
|
|
|
|
project->values("VER_MIN").append(l[1]);
|
|
|
|
project->values("VER_PAT").append(l[2]);
|
|
|
|
if(project->isEmpty("QMAKE_FRAMEWORK_VERSION"))
|
|
|
|
project->values("QMAKE_FRAMEWORK_VERSION").append(project->values("VER_MAJ").first());
|
|
|
|
|
2011-05-03 13:30:28 +00:00
|
|
|
if (project->values("TEMPLATE").first() == "aux")
|
|
|
|
return;
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
if (!project->values("QMAKE_APP_FLAG").isEmpty()) {
|
|
|
|
if(!project->isEmpty("QMAKE_BUNDLE")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString bundle_loc = project->first("QMAKE_BUNDLE_LOCATION");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!bundle_loc.isEmpty() && !bundle_loc.startsWith("/"))
|
|
|
|
bundle_loc.prepend("/");
|
|
|
|
if(!bundle_loc.endsWith("/"))
|
|
|
|
bundle_loc += "/";
|
|
|
|
project->values("TARGET").first().prepend(project->first("QMAKE_BUNDLE") + bundle_loc);
|
|
|
|
}
|
|
|
|
if(!project->isEmpty("TARGET"))
|
|
|
|
project->values("TARGET").first().prepend(project->first("DESTDIR"));
|
|
|
|
if (!project->values("QMAKE_CYGWIN_EXE").isEmpty())
|
|
|
|
project->values("TARGET_EXT").append(".exe");
|
|
|
|
} else if (project->isActiveConfig("staticlib")) {
|
|
|
|
project->values("TARGET").first().prepend(project->first("QMAKE_PREFIX_STATICLIB"));
|
|
|
|
project->values("TARGET").first() += "." + project->first("QMAKE_EXTENSION_STATICLIB");
|
|
|
|
if(project->values("QMAKE_AR_CMD").isEmpty())
|
|
|
|
project->values("QMAKE_AR_CMD").append("$(AR) $(TARGET) $(OBJECTS)");
|
|
|
|
} else {
|
|
|
|
project->values("TARGETA").append(project->first("DESTDIR") + project->first("QMAKE_PREFIX_STATICLIB")
|
|
|
|
+ project->first("TARGET") + "." + project->first("QMAKE_EXTENSION_STATICLIB"));
|
|
|
|
if(project->isActiveConfig("compile_libtool"))
|
2012-09-06 10:21:38 +00:00
|
|
|
project->values("TARGET_la") = ProStringList(project->first("DESTDIR") + "lib" + project->first("TARGET") + Option::libtool_ext);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &ar_cmd = project->values("QMAKE_AR_CMD");
|
|
|
|
if (!ar_cmd.isEmpty())
|
|
|
|
ar_cmd[0] = ar_cmd.at(0).toQString().replace("(TARGET)","(TARGETA)");
|
2011-04-27 10:05:43 +00:00
|
|
|
else
|
2012-09-06 10:21:38 +00:00
|
|
|
ar_cmd.append("$(AR) $(TARGETA) $(OBJECTS)");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(project->isActiveConfig("compile_libtool")) {
|
|
|
|
project->values("TARGET") = project->values("TARGET_la");
|
|
|
|
} else if(!project->isEmpty("QMAKE_BUNDLE")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString bundle_loc = project->first("QMAKE_BUNDLE_LOCATION");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!bundle_loc.isEmpty() && !bundle_loc.startsWith("/"))
|
|
|
|
bundle_loc.prepend("/");
|
|
|
|
if(!bundle_loc.endsWith("/"))
|
|
|
|
bundle_loc += "/";
|
|
|
|
project->values("TARGET_").append(project->first("QMAKE_BUNDLE") +
|
|
|
|
bundle_loc + unescapeFilePath(project->first("TARGET")));
|
|
|
|
project->values("TARGET_x.y").append(project->first("QMAKE_BUNDLE") +
|
|
|
|
"/Versions/" +
|
|
|
|
project->first("QMAKE_FRAMEWORK_VERSION") +
|
|
|
|
bundle_loc + unescapeFilePath(project->first("TARGET")));
|
|
|
|
} else if(project->isActiveConfig("plugin")) {
|
|
|
|
QString prefix;
|
|
|
|
if(!project->isActiveConfig("no_plugin_name_prefix"))
|
|
|
|
prefix = "lib";
|
|
|
|
project->values("TARGET_x.y.z").append(prefix +
|
|
|
|
project->first("TARGET") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_PLUGIN"));
|
|
|
|
if(project->isActiveConfig("lib_version_first"))
|
|
|
|
project->values("TARGET_x").append(prefix + project->first("TARGET") + "." +
|
|
|
|
project->first("VER_MAJ") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_PLUGIN"));
|
|
|
|
else
|
|
|
|
project->values("TARGET_x").append(prefix + project->first("TARGET") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_PLUGIN") +
|
|
|
|
"." + project->first("VER_MAJ"));
|
|
|
|
project->values("TARGET") = project->values("TARGET_x.y.z");
|
|
|
|
} else if (!project->isEmpty("QMAKE_HPUX_SHLIB")) {
|
|
|
|
project->values("TARGET_").append("lib" + project->first("TARGET") + ".sl");
|
|
|
|
if(project->isActiveConfig("lib_version_first"))
|
|
|
|
project->values("TARGET_x").append("lib" + project->first("VER_MAJ") + "." +
|
|
|
|
project->first("TARGET"));
|
|
|
|
else
|
|
|
|
project->values("TARGET_x").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("VER_MAJ"));
|
|
|
|
project->values("TARGET") = project->values("TARGET_x");
|
|
|
|
} else if (!project->isEmpty("QMAKE_AIX_SHLIB")) {
|
|
|
|
project->values("TARGET_").append(project->first("QMAKE_PREFIX_STATICLIB") + project->first("TARGET")
|
|
|
|
+ "." + project->first("QMAKE_EXTENSION_STATICLIB"));
|
|
|
|
if(project->isActiveConfig("lib_version_first")) {
|
|
|
|
project->values("TARGET_x").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("VER_MAJ") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB"));
|
|
|
|
project->values("TARGET_x.y").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("VER_MAJ") +
|
|
|
|
"." + project->first("VER_MIN") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB"));
|
|
|
|
project->values("TARGET_x.y.z").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("VER_MAJ") + "." +
|
|
|
|
project->first("VER_MIN") + "." +
|
|
|
|
project->first("VER_PAT") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB"));
|
|
|
|
} else {
|
|
|
|
project->values("TARGET_x").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB") +
|
|
|
|
"." + project->first("VER_MAJ"));
|
|
|
|
project->values("TARGET_x.y").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB") +
|
|
|
|
"." + project->first("VER_MAJ") +
|
|
|
|
"." + project->first("VER_MIN"));
|
|
|
|
project->values("TARGET_x.y.z").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB") + "." +
|
|
|
|
project->first("VER_MAJ") + "." +
|
|
|
|
project->first("VER_MIN") + "." +
|
|
|
|
project->first("VER_PAT"));
|
|
|
|
}
|
|
|
|
project->values("TARGET") = project->values("TARGET_x.y.z");
|
|
|
|
} else {
|
|
|
|
project->values("TARGET_").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB"));
|
|
|
|
if(project->isActiveConfig("lib_version_first")) {
|
|
|
|
project->values("TARGET_x").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("VER_MAJ") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB"));
|
|
|
|
project->values("TARGET_x.y").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("VER_MAJ") +
|
|
|
|
"." + project->first("VER_MIN") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB"));
|
|
|
|
project->values("TARGET_x.y.z").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("VER_MAJ") + "." +
|
|
|
|
project->first("VER_MIN") + "." +
|
|
|
|
project->first("VER_PAT") + "." +
|
|
|
|
project->values("QMAKE_EXTENSION_SHLIB").first());
|
|
|
|
} else {
|
|
|
|
project->values("TARGET_x").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB") +
|
|
|
|
"." + project->first("VER_MAJ"));
|
|
|
|
project->values("TARGET_x.y").append("lib" + project->first("TARGET") + "." +
|
|
|
|
project->first("QMAKE_EXTENSION_SHLIB")
|
|
|
|
+ "." + project->first("VER_MAJ") +
|
|
|
|
"." + project->first("VER_MIN"));
|
|
|
|
project->values("TARGET_x.y.z").append("lib" + project->first("TARGET") +
|
|
|
|
"." +
|
|
|
|
project->values(
|
|
|
|
"QMAKE_EXTENSION_SHLIB").first() + "." +
|
|
|
|
project->first("VER_MAJ") + "." +
|
|
|
|
project->first("VER_MIN") + "." +
|
|
|
|
project->first("VER_PAT"));
|
|
|
|
}
|
|
|
|
project->values("TARGET") = project->values("TARGET_x.y.z");
|
|
|
|
}
|
|
|
|
if(project->isEmpty("QMAKE_LN_SHLIB"))
|
|
|
|
project->values("QMAKE_LN_SHLIB").append("ln -s");
|
|
|
|
if (!project->values("QMAKE_LFLAGS_SONAME").isEmpty()) {
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString soname;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(project->isActiveConfig("plugin")) {
|
|
|
|
if(!project->values("TARGET").isEmpty())
|
|
|
|
soname += project->first("TARGET");
|
|
|
|
} else if(!project->isEmpty("QMAKE_BUNDLE")) {
|
|
|
|
soname += project->first("TARGET_x.y");
|
|
|
|
} else if(!project->values("TARGET_x").isEmpty()) {
|
|
|
|
soname += project->first("TARGET_x");
|
|
|
|
}
|
|
|
|
if(!soname.isEmpty()) {
|
|
|
|
if(project->isActiveConfig("absolute_library_soname") &&
|
|
|
|
project->values("INSTALLS").indexOf("target") != -1 &&
|
|
|
|
!project->isEmpty("target.path")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString instpath = Option::fixPathToTargetOS(project->first("target.path").toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!instpath.endsWith(Option::dir_sep))
|
|
|
|
instpath += Option::dir_sep;
|
|
|
|
soname.prepend(instpath);
|
|
|
|
}
|
|
|
|
project->values("QMAKE_LFLAGS_SONAME").first() += escapeFilePath(soname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (project->values("QMAKE_LINK_SHLIB_CMD").isEmpty())
|
|
|
|
project->values("QMAKE_LINK_SHLIB_CMD").append(
|
|
|
|
"$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS) $(OBJCOMP)");
|
|
|
|
}
|
|
|
|
if (!project->values("QMAKE_APP_FLAG").isEmpty()) {
|
|
|
|
project->values("QMAKE_CFLAGS") += project->values("QMAKE_CFLAGS_APP");
|
|
|
|
project->values("QMAKE_CXXFLAGS") += project->values("QMAKE_CXXFLAGS_APP");
|
|
|
|
project->values("QMAKE_LFLAGS") += project->values("QMAKE_LFLAGS_APP");
|
|
|
|
} else if (project->isActiveConfig("dll")) {
|
|
|
|
if(!project->isActiveConfig("plugin") || !project->isActiveConfig("plugin_no_share_shlib_cflags")) {
|
|
|
|
project->values("QMAKE_CFLAGS") += project->values("QMAKE_CFLAGS_SHLIB");
|
|
|
|
project->values("QMAKE_CXXFLAGS") += project->values("QMAKE_CXXFLAGS_SHLIB");
|
|
|
|
}
|
|
|
|
if (project->isActiveConfig("plugin")) {
|
|
|
|
project->values("QMAKE_CFLAGS") += project->values("QMAKE_CFLAGS_PLUGIN");
|
|
|
|
project->values("QMAKE_CXXFLAGS") += project->values("QMAKE_CXXFLAGS_PLUGIN");
|
|
|
|
project->values("QMAKE_LFLAGS") += project->values("QMAKE_LFLAGS_PLUGIN");
|
|
|
|
if(project->isActiveConfig("plugin_with_soname") && !project->isActiveConfig("compile_libtool"))
|
|
|
|
project->values("QMAKE_LFLAGS") += project->values("QMAKE_LFLAGS_SONAME");
|
|
|
|
} else {
|
|
|
|
project->values("QMAKE_LFLAGS") += project->values("QMAKE_LFLAGS_SHLIB");
|
|
|
|
if(!project->isEmpty("QMAKE_LFLAGS_COMPAT_VERSION")) {
|
|
|
|
if(project->isEmpty("COMPAT_VERSION"))
|
|
|
|
project->values("QMAKE_LFLAGS") += QString(project->first("QMAKE_LFLAGS_COMPAT_VERSION") +
|
|
|
|
project->first("VER_MAJ") + "." +
|
|
|
|
project->first("VER_MIN"));
|
|
|
|
else
|
|
|
|
project->values("QMAKE_LFLAGS") += QString(project->first("QMAKE_LFLAGS_COMPAT_VERSION") +
|
|
|
|
project->first("COMPATIBILITY_VERSION"));
|
|
|
|
}
|
|
|
|
if(!project->isEmpty("QMAKE_LFLAGS_VERSION")) {
|
|
|
|
project->values("QMAKE_LFLAGS") += QString(project->first("QMAKE_LFLAGS_VERSION") +
|
|
|
|
project->first("VER_MAJ") + "." +
|
|
|
|
project->first("VER_MIN") + "." +
|
|
|
|
project->first("VER_PAT"));
|
|
|
|
}
|
|
|
|
if(!project->isActiveConfig("compile_libtool"))
|
|
|
|
project->values("QMAKE_LFLAGS") += project->values("QMAKE_LFLAGS_SONAME");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-24 11:37:30 +00:00
|
|
|
if (include_deps && project->isActiveConfig("gcc_MD_depends")) {
|
|
|
|
project->values("QMAKE_CFLAGS") += "-MD";
|
|
|
|
project->values("QMAKE_CXXFLAGS") += "-MD";
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("QMAKE_BUNDLE")) {
|
2012-09-06 10:21:38 +00:00
|
|
|
QString plist = fileFixify(project->first("QMAKE_INFO_PLIST").toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
if(plist.isEmpty())
|
|
|
|
plist = specdir() + QDir::separator() + "Info.plist." + project->first("TEMPLATE");
|
|
|
|
if(exists(Option::fixPathToLocalOS(plist))) {
|
|
|
|
if(project->isEmpty("QMAKE_INFO_PLIST"))
|
|
|
|
project->values("QMAKE_INFO_PLIST").append(plist);
|
|
|
|
project->values("QMAKE_INFO_PLIST_OUT").append(project->first("DESTDIR") +
|
|
|
|
project->first("QMAKE_BUNDLE") +
|
|
|
|
"/Contents/Info.plist");
|
|
|
|
project->values("ALL_DEPS") += project->first("QMAKE_INFO_PLIST_OUT");
|
|
|
|
if(!project->isEmpty("ICON") && project->first("TEMPLATE") == "app")
|
|
|
|
project->values("ALL_DEPS") += project->first("DESTDIR") +
|
|
|
|
project->first("QMAKE_BUNDLE") +
|
2012-09-06 10:21:38 +00:00
|
|
|
"/Contents/Resources/" + project->first("ICON").toQString().section('/', -1);
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("QMAKE_BUNDLE_DATA")) {
|
|
|
|
QString bundle_dir = project->first("DESTDIR") + project->first("QMAKE_BUNDLE") + "/";
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList &alldeps = project->values("ALL_DEPS");
|
|
|
|
const ProStringList &bundle_data = project->values("QMAKE_BUNDLE_DATA");
|
2011-04-27 10:05:43 +00:00
|
|
|
for(int i = 0; i < bundle_data.count(); i++) {
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProStringList &files = project->values(ProKey(bundle_data[i] + ".files"));
|
2011-04-27 10:05:43 +00:00
|
|
|
QString path = bundle_dir;
|
2012-09-06 10:21:38 +00:00
|
|
|
const ProKey vkey(bundle_data[i] + ".version");
|
|
|
|
const ProKey pkey(bundle_data[i] + ".path");
|
|
|
|
if (!project->isEmpty(vkey)) {
|
|
|
|
alldeps += Option::fixPathToLocalOS(path + Option::dir_sep + project->first(pkey));
|
|
|
|
path += project->first(vkey) + "/" +
|
2011-04-27 10:05:43 +00:00
|
|
|
project->first("QMAKE_FRAMEWORK_VERSION") + "/";
|
|
|
|
}
|
2012-09-06 10:21:38 +00:00
|
|
|
path += project->first(pkey);
|
2011-04-27 10:05:43 +00:00
|
|
|
path = Option::fixPathToLocalOS(path);
|
|
|
|
for(int file = 0; file < files.count(); file++)
|
2012-09-06 10:21:38 +00:00
|
|
|
alldeps += path + Option::dir_sep + fileInfo(files[file].toQString()).fileName();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString
|
|
|
|
UnixMakefileGenerator::libtoolFileName(bool fixify)
|
|
|
|
{
|
|
|
|
QString ret = var("TARGET");
|
|
|
|
int slsh = ret.lastIndexOf(Option::dir_sep);
|
|
|
|
if(slsh != -1)
|
|
|
|
ret = ret.right(ret.length() - slsh - 1);
|
|
|
|
int dot = ret.indexOf('.');
|
|
|
|
if(dot != -1)
|
|
|
|
ret = ret.left(dot);
|
|
|
|
ret += Option::libtool_ext;
|
|
|
|
if(!project->isEmpty("QMAKE_LIBTOOL_DESTDIR"))
|
|
|
|
ret.prepend(project->first("QMAKE_LIBTOOL_DESTDIR") + Option::dir_sep);
|
|
|
|
if(fixify) {
|
|
|
|
if(QDir::isRelativePath(ret) && !project->isEmpty("DESTDIR"))
|
2012-09-06 10:21:38 +00:00
|
|
|
ret.prepend(project->first("DESTDIR").toQString());
|
2011-04-27 10:05:43 +00:00
|
|
|
ret = Option::fixPathToLocalOS(fileFixify(ret, qmake_getpwd(), Option::output_dir));
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UnixMakefileGenerator::writeLibtoolFile()
|
|
|
|
{
|
|
|
|
QString fname = libtoolFileName(), lname = fname;
|
|
|
|
mkdir(fileInfo(fname).path());
|
|
|
|
int slsh = lname.lastIndexOf(Option::dir_sep);
|
|
|
|
if(slsh != -1)
|
|
|
|
lname = lname.right(lname.length() - slsh - 1);
|
|
|
|
QFile ft(fname);
|
|
|
|
if(!ft.open(QIODevice::WriteOnly))
|
|
|
|
return;
|
|
|
|
project->values("ALL_DEPS").append(fileFixify(fname));
|
|
|
|
|
|
|
|
QTextStream t(&ft);
|
|
|
|
t << "# " << lname << " - a libtool library file\n";
|
2012-09-12 17:27:09 +00:00
|
|
|
t << "# Generated by qmake/libtool (" QMAKE_VERSION_STR ") (Qt "
|
2011-04-27 10:05:43 +00:00
|
|
|
<< QT_VERSION_STR << ") on: " << QDateTime::currentDateTime().toString();
|
|
|
|
t << "\n";
|
|
|
|
|
|
|
|
t << "# The name that we can dlopen(3).\n"
|
|
|
|
<< "dlname='" << var(project->isActiveConfig("plugin") ? "TARGET" : "TARGET_x")
|
|
|
|
<< "'\n\n";
|
|
|
|
|
|
|
|
t << "# Names of this library.\n";
|
|
|
|
t << "library_names='";
|
|
|
|
if(project->isActiveConfig("plugin")) {
|
|
|
|
t << var("TARGET");
|
|
|
|
} else {
|
|
|
|
if (project->isEmpty("QMAKE_HPUX_SHLIB"))
|
|
|
|
t << var("TARGET_x.y.z") << " ";
|
|
|
|
t << var("TARGET_x") << " " << var("TARGET_");
|
|
|
|
}
|
|
|
|
t << "'\n\n";
|
|
|
|
|
|
|
|
t << "# The name of the static archive.\n"
|
|
|
|
<< "old_library='" << lname.left(lname.length()-Option::libtool_ext.length()) << ".a'\n\n";
|
|
|
|
|
|
|
|
t << "# Libraries that this one depends upon.\n";
|
2012-09-06 10:21:38 +00:00
|
|
|
ProStringList libs;
|
2011-04-27 10:05:43 +00:00
|
|
|
if(!project->isEmpty("QMAKE_INTERNAL_PRL_LIBS"))
|
|
|
|
libs = project->values("QMAKE_INTERNAL_PRL_LIBS");
|
|
|
|
else
|
|
|
|
libs << "QMAKE_LIBS"; //obvious one
|
|
|
|
t << "dependency_libs='";
|
2012-09-06 10:21:38 +00:00
|
|
|
for (ProStringList::ConstIterator it = libs.begin(); it != libs.end(); ++it)
|
2012-05-18 18:00:23 +00:00
|
|
|
t << project->values((*it).toKey()).join(' ') << " ";
|
2011-04-27 10:05:43 +00:00
|
|
|
t << "'\n\n";
|
|
|
|
|
|
|
|
t << "# Version information for " << lname << "\n";
|
|
|
|
int maj = project->first("VER_MAJ").toInt();
|
|
|
|
int min = project->first("VER_MIN").toInt();
|
|
|
|
int pat = project->first("VER_PAT").toInt();
|
|
|
|
t << "current=" << (10*maj + min) << "\n" // best I can think of
|
|
|
|
<< "age=0\n"
|
|
|
|
<< "revision=" << pat << "\n\n";
|
|
|
|
|
|
|
|
t << "# Is this an already installed library.\n"
|
|
|
|
"installed=yes\n\n"; // ###
|
|
|
|
|
|
|
|
t << "# Files to dlopen/dlpreopen.\n"
|
|
|
|
"dlopen=''\n"
|
|
|
|
"dlpreopen=''\n\n";
|
|
|
|
|
2012-09-06 10:21:38 +00:00
|
|
|
ProString install_dir = project->first("QMAKE_LIBTOOL_LIBDIR");
|
2011-04-27 10:05:43 +00:00
|
|
|
if(install_dir.isEmpty())
|
|
|
|
install_dir = project->first("target.path");
|
|
|
|
if(install_dir.isEmpty())
|
|
|
|
install_dir = project->first("DESTDIR");
|
|
|
|
t << "# Directory that this library needs to be installed in:\n"
|
2012-09-06 10:21:38 +00:00
|
|
|
"libdir='" << Option::fixPathToTargetOS(install_dir.toQString(), false) << "'\n";
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|