Author: arist Date: Wed Nov 14 22:48:03 2012 New Revision: 1409495 URL: http://svn.apache.org/viewvc?rev=1409495&view=rev Log: gnumake4_011_5c3a6ec61795.patch # HG changeset patch # User mba # Date 1298581600 -3600 # Node ID 5c3a6ec61795a6f5ad1abda99c5e60eba90e5f55 # Parent 98c01bf8455acfde9aa9dd619fb9c205ec0cfb4f CWS gnumake4: convert ucbhelper to new build system
Added: incubator/ooo/branches/gbuild/main/ucbhelper/Library_ucbhelper.mk incubator/ooo/branches/gbuild/main/ucbhelper/Makefile incubator/ooo/branches/gbuild/main/ucbhelper/Module_ucbhelper.mk incubator/ooo/branches/gbuild/main/ucbhelper/Package_inc.mk incubator/ooo/branches/gbuild/main/ucbhelper/prj/makefile.mk Modified: incubator/ooo/branches/gbuild/main/Module_ooo.mk incubator/ooo/branches/gbuild/main/ucbhelper/prj/build.lst incubator/ooo/branches/gbuild/main/ucbhelper/prj/d.lst Modified: incubator/ooo/branches/gbuild/main/Module_ooo.mk URL: http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/Module_ooo.mk?rev=1409495&r1=1409494&r2=1409495&view=diff ============================================================================== --- incubator/ooo/branches/gbuild/main/Module_ooo.mk (original) +++ incubator/ooo/branches/gbuild/main/Module_ooo.mk Wed Nov 14 22:48:03 2012 @@ -44,6 +44,7 @@ $(eval $(call gb_Module_add_moduledirs,o sw \ toolkit \ tools \ + ucbhelper \ udkapi \ unotools \ unoxml \ Added: incubator/ooo/branches/gbuild/main/ucbhelper/Library_ucbhelper.mk URL: http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/ucbhelper/Library_ucbhelper.mk?rev=1409495&view=auto ============================================================================== --- incubator/ooo/branches/gbuild/main/ucbhelper/Library_ucbhelper.mk (added) +++ incubator/ooo/branches/gbuild/main/ucbhelper/Library_ucbhelper.mk Wed Nov 14 22:48:03 2012 @@ -0,0 +1,88 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2011 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +$(eval $(call gb_Library_Library,ucbhelper)) + +$(eval $(call gb_Library_add_package_headers,ucbhelper,ucbhelper_inc)) + +$(eval $(call gb_Library_add_precompiled_header,ucbhelper,$(SRCDIR)/ucbhelper/inc/pch/precompiled_ucbhelper)) + +$(eval $(call gb_Library_add_api,ucbhelper,\ + udkapi \ + offapi \ +)) + +$(eval $(call gb_Library_set_include,ucbhelper,\ + $$(INCLUDE) \ + -I$(SRCDIR)/ucbhelper/inc \ + -I$(SRCDIR)/ucbhelper/inc/pch \ +)) + +$(eval $(call gb_Library_set_defs,ucbhelper,\ + $$(DEFS) \ + -DUCBHELPER_DLLIMPLEMENTATION \ +)) + +$(eval $(call gb_Library_add_linked_libs,ucbhelper,\ + stl \ + sal \ + cppu \ + cppuhelper \ + salhelper \ + $(gb_STDLIBS) \ +)) + +$(eval $(call gb_Library_add_exception_objects,ucbhelper,\ + ucbhelper/source/provider/simpleauthenticationrequest \ + ucbhelper/source/provider/simpleioerrorrequest \ + ucbhelper/source/provider/cancelcommandexecution \ + ucbhelper/source/provider/contenthelper \ + ucbhelper/source/provider/propertyvalueset \ + ucbhelper/source/provider/resultset \ + ucbhelper/source/provider/resultsetmetadata \ + ucbhelper/source/provider/simplecertificatevalidationrequest \ + ucbhelper/source/provider/contentidentifier \ + ucbhelper/source/provider/resultsethelper \ + ucbhelper/source/provider/simplenameclashresolverequest \ + ucbhelper/source/provider/simpleinteractionrequest \ + ucbhelper/source/provider/handleinteractionrequest \ + ucbhelper/source/provider/registerucb \ + ucbhelper/source/provider/contentinfo \ + ucbhelper/source/provider/interactionrequest \ + ucbhelper/source/provider/commandenvironmentproxy \ + ucbhelper/source/provider/providerhelper \ + ucbhelper/source/client/proxydecider \ + ucbhelper/source/client/content \ + ucbhelper/source/client/contentbroker \ + ucbhelper/source/client/commandenvironment \ + ucbhelper/source/client/activedatastreamer \ + ucbhelper/source/client/fileidentifierconverter \ + ucbhelper/source/client/interceptedinteraction \ + ucbhelper/source/client/activedatasink \ +)) + +# vim: set noet sw=4 ts=4: Added: incubator/ooo/branches/gbuild/main/ucbhelper/Makefile URL: http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/ucbhelper/Makefile?rev=1409495&view=auto ============================================================================== --- incubator/ooo/branches/gbuild/main/ucbhelper/Makefile (added) +++ incubator/ooo/branches/gbuild/main/ucbhelper/Makefile Wed Nov 14 22:48:03 2012 @@ -0,0 +1,38 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2011 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +ifeq ($(strip $(SOLARENV)),) +$(error No environment set!) +endif + +gb_PARTIALBUILD := T +GBUILDDIR := $(SOLARENV)/gbuild +include $(GBUILDDIR)/gbuild.mk + +$(eval $(call gb_Module_make_global_targets,$(shell ls $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/Module*.mk))) + +# vim: set noet sw=4 ts=4: Added: incubator/ooo/branches/gbuild/main/ucbhelper/Module_ucbhelper.mk URL: http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/ucbhelper/Module_ucbhelper.mk?rev=1409495&view=auto ============================================================================== --- incubator/ooo/branches/gbuild/main/ucbhelper/Module_ucbhelper.mk (added) +++ incubator/ooo/branches/gbuild/main/ucbhelper/Module_ucbhelper.mk Wed Nov 14 22:48:03 2012 @@ -0,0 +1,38 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2011 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +# replace ucbhelper by the name of the module you are creating + +$(eval $(call gb_Module_Module,ucbhelper)) + +# the targets to be inserted are their file names without .mk extension +$(eval $(call gb_Module_add_targets,ucbhelper,\ + Library_ucbhelper \ + Package_inc \ +)) + +# vim: set noet sw=4 ts=4: Added: incubator/ooo/branches/gbuild/main/ucbhelper/Package_inc.mk URL: http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/ucbhelper/Package_inc.mk?rev=1409495&view=auto ============================================================================== --- incubator/ooo/branches/gbuild/main/ucbhelper/Package_inc.mk (added) +++ incubator/ooo/branches/gbuild/main/ucbhelper/Package_inc.mk Wed Nov 14 22:48:03 2012 @@ -0,0 +1,59 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2011 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +$(eval $(call gb_Package_Package,ucbhelper_inc,$(SRCDIR)/ucbhelper/inc)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/contentbroker.hxx,ucbhelper/contentbroker.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/simpleauthenticationrequest.hxx,ucbhelper/simpleauthenticationrequest.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/propertyvalueset.hxx,ucbhelper/propertyvalueset.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/contentinfo.hxx,ucbhelper/contentinfo.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/resultsetmetadata.hxx,ucbhelper/resultsetmetadata.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/contenthelper.hxx,ucbhelper/contenthelper.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/activedatasink.hxx,ucbhelper/activedatasink.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/commandenvironment.hxx,ucbhelper/commandenvironment.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/interceptedinteraction.hxx,ucbhelper/interceptedinteraction.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/resultset.hxx,ucbhelper/resultset.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/ucbhelperdllapi.h,ucbhelper/ucbhelperdllapi.h)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/simpleinteractionrequest.hxx,ucbhelper/simpleinteractionrequest.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/simpleioerrorrequest.hxx,ucbhelper/simpleioerrorrequest.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/interactionrequest.hxx,ucbhelper/interactionrequest.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/activedatastreamer.hxx,ucbhelper/activedatastreamer.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/content.hxx,ucbhelper/content.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/simplecertificatevalidationrequest.hxx,ucbhelper/simplecertificatevalidationrequest.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/proxydecider.hxx,ucbhelper/proxydecider.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/fileidentifierconverter.hxx,ucbhelper/fileidentifierconverter.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/cancelcommandexecution.hxx,ucbhelper/cancelcommandexecution.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/commandenvironmentproxy.hxx,ucbhelper/commandenvironmentproxy.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/registerucb.hxx,ucbhelper/registerucb.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/resultsethelper.hxx,ucbhelper/resultsethelper.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/configurationkeys.hxx,ucbhelper/configurationkeys.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/contentidentifier.hxx,ucbhelper/contentidentifier.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/handleinteractionrequest.hxx,ucbhelper/handleinteractionrequest.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/providerhelper.hxx,ucbhelper/providerhelper.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/simplenameclashresolverequest.hxx,ucbhelper/simplenameclashresolverequest.hxx)) +$(eval $(call gb_Package_add_file,ucbhelper_inc,inc/ucbhelper/macros.hxx,ucbhelper/macros.hxx)) + +# vim: set noet sw=4 ts=4: Modified: incubator/ooo/branches/gbuild/main/ucbhelper/prj/build.lst URL: http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/ucbhelper/prj/build.lst?rev=1409495&r1=1409494&r2=1409495&view=diff ============================================================================== --- incubator/ooo/branches/gbuild/main/ucbhelper/prj/build.lst (original) +++ incubator/ooo/branches/gbuild/main/ucbhelper/prj/build.lst Wed Nov 14 22:48:03 2012 @@ -1,7 +1,2 @@ uh ucbhelper : offapi sal cppu cppuhelper salhelper NULL -uh ucbhelper usr1 - all uh_mkout NULL -uh ucbhelper\inc nmake - all uh_inc NULL -uh ucbhelper\source\client nmake - all uh_client uh_inc NULL -uh ucbhelper\source\provider nmake - all uh_provider uh_inc NULL -uh ucbhelper\util nmake - all uh_util uh_client uh_provider NULL -uh ucbhelper\workben\myucp nmake - all uh_wb_myucp uh_util NULL +uh ucbhelper\prj nmake - all uh_prj NULL Modified: incubator/ooo/branches/gbuild/main/ucbhelper/prj/d.lst URL: http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/ucbhelper/prj/d.lst?rev=1409495&r1=1409494&r2=1409495&view=diff ============================================================================== --- incubator/ooo/branches/gbuild/main/ucbhelper/prj/d.lst (original) +++ incubator/ooo/branches/gbuild/main/ucbhelper/prj/d.lst Wed Nov 14 22:48:03 2012 @@ -1,40 +0,0 @@ -..\%__SRC%\bin\*.dll %_DEST%\bin%_EXT%\*.dll -..\%__SRC%\lib\lib*.so %_DEST%\lib%_EXT%\lib*.so -..\%__SRC%\lib\lib*.dylib %_DEST%\lib%_EXT%\lib*.dylib -..\%__SRC%\lib\*.lib %_DEST%\lib%_EXT%\*.lib -..\%__SRC%\misc\*.map %_DEST%\bin%_EXT%\*.map -..\%__SRC%\misc\*.sym %_DEST%\bin%_EXT%\*.sym - -..\util\ucbhelper.xml %_DEST%\xml%_EXT%\ucbhelper.xml - -mkdir: %_DEST%\inc%_EXT%\ucbhelper -..\inc\ucbhelper\configurationkeys.hxx %_DEST%\inc%_EXT%\ucbhelper\configurationkeys.hxx -..\inc\ucbhelper\registerucb.hxx %_DEST%\inc%_EXT%\ucbhelper\registerucb.hxx -..\inc\ucbhelper\content.hxx %_DEST%\inc%_EXT%\ucbhelper\content.hxx -..\inc\ucbhelper\contentbroker.hxx %_DEST%\inc%_EXT%\ucbhelper\contentbroker.hxx -..\inc\ucbhelper\commandenvironment.hxx %_DEST%\inc%_EXT%\ucbhelper\commandenvironment.hxx -..\inc\ucbhelper\contentidentifier.hxx %_DEST%\inc%_EXT%\ucbhelper\contentidentifier.hxx -..\inc\ucbhelper\contenthelper.hxx %_DEST%\inc%_EXT%\ucbhelper\contenthelper.hxx -..\inc\ucbhelper\contentidentifier.hxx %_DEST%\inc%_EXT%\ucbhelper\contentidentifier.hxx -..\inc\ucbhelper\contentinfo.hxx %_DEST%\inc%_EXT%\ucbhelper\contentinfo.hxx -..\inc\ucbhelper\fileidentifierconverter.hxx %_DEST%\inc%_EXT%\ucbhelper\fileidentifierconverter.hxx -..\inc\ucbhelper\macros.hxx %_DEST%\inc%_EXT%\ucbhelper\macros.hxx -..\inc\ucbhelper\propertyvalueset.hxx %_DEST%\inc%_EXT%\ucbhelper\propertyvalueset.hxx -..\inc\ucbhelper\providerhelper.hxx %_DEST%\inc%_EXT%\ucbhelper\providerhelper.hxx -..\inc\ucbhelper\resultset.hxx %_DEST%\inc%_EXT%\ucbhelper\resultset.hxx -..\inc\ucbhelper\resultsetmetadata.hxx %_DEST%\inc%_EXT%\ucbhelper\resultsetmetadata.hxx -..\inc\ucbhelper\resultsethelper.hxx %_DEST%\inc%_EXT%\ucbhelper\resultsethelper.hxx -..\inc\ucbhelper\activedatasink.hxx %_DEST%\inc%_EXT%\ucbhelper\activedatasink.hxx -..\inc\ucbhelper\commandenvironmentproxy.hxx %_DEST%\inc%_EXT%\ucbhelper\commandenvironmentproxy.hxx -..\inc\ucbhelper\interactionrequest.hxx %_DEST%\inc%_EXT%\ucbhelper\interactionrequest.hxx -..\inc\ucbhelper\interceptedinteraction.hxx %_DEST%\inc%_EXT%\ucbhelper\interceptedinteraction.hxx -..\inc\ucbhelper\simpleinteractionrequest.hxx %_DEST%\inc%_EXT%\ucbhelper\simpleinteractionrequest.hxx -..\inc\ucbhelper\simpleauthenticationrequest.hxx %_DEST%\inc%_EXT%\ucbhelper\simpleauthenticationrequest.hxx -..\inc\ucbhelper\simplenameclashresolverequest.hxx %_DEST%\inc%_EXT%\ucbhelper\simplenameclashresolverequest.hxx -..\inc\ucbhelper\simplecertificatevalidationrequest.hxx %_DEST%\inc%_EXT%\ucbhelper\simplecertificatevalidationrequest.hxx -..\inc\ucbhelper\simpleioerrorrequest.hxx %_DEST%\inc%_EXT%\ucbhelper\simpleioerrorrequest.hxx -..\inc\ucbhelper\cancelcommandexecution.hxx %_DEST%\inc%_EXT%\ucbhelper\cancelcommandexecution.hxx -..\inc\ucbhelper\handleinteractionrequest.hxx %_DEST%\inc%_EXT%\ucbhelper\handleinteractionrequest.hxx -..\inc\ucbhelper\proxydecider.hxx %_DEST%\inc%_EXT%\ucbhelper\proxydecider.hxx -..\version.mk %_DEST%\inc%_EXT%\ucbhelper\version.mk -..\inc\ucbhelper\ucbhelperdllapi.h %_DEST%\inc%_EXT%\ucbhelper\ucbhelperdllapi.h Added: incubator/ooo/branches/gbuild/main/ucbhelper/prj/makefile.mk URL: http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/ucbhelper/prj/makefile.mk?rev=1409495&view=auto ============================================================================== --- incubator/ooo/branches/gbuild/main/ucbhelper/prj/makefile.mk (added) +++ incubator/ooo/branches/gbuild/main/ucbhelper/prj/makefile.mk Wed Nov 14 22:48:03 2012 @@ -0,0 +1,40 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +PRJ=.. +TARGET=prj + +.INCLUDE : settings.mk + +.IF "$(VERBOSE)"!="" +VERBOSEFLAG := +.ELSE +VERBOSEFLAG := -s +.ENDIF + +all: + cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog