From 165b95bc248a7b39d57d99622689cdaad790eff5 Mon Sep 17 00:00:00 2001 From: Peter Foley Date: Sun, 18 Sep 2011 11:26:26 -0400 Subject: convert twain to gbuild --- twain/Makefile | 38 ++++++++++++++++++++++++++++++++++++++ twain/Module_twain.mk | 36 ++++++++++++++++++++++++++++++++++++ twain/Package_inc.mk | 32 ++++++++++++++++++++++++++++++++ twain/prj/build.lst | 3 +-- twain/prj/d.lst | 3 --- twain/prj/makefile.mk | 40 ++++++++++++++++++++++++++++++++++++++++ twain/util/makefile.mk | 39 --------------------------------------- 7 files changed, 147 insertions(+), 44 deletions(-) create mode 100644 twain/Makefile create mode 100644 twain/Module_twain.mk create mode 100644 twain/Package_inc.mk create mode 100644 twain/prj/makefile.mk delete mode 100644 twain/util/makefile.mk (limited to 'twain') diff --git a/twain/Makefile b/twain/Makefile new file mode 100644 index 000000000000..5bedaf0b9dcf --- /dev/null +++ b/twain/Makefile @@ -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 +# +# 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: diff --git a/twain/Module_twain.mk b/twain/Module_twain.mk new file mode 100644 index 000000000000..f66b41bbddce --- /dev/null +++ b/twain/Module_twain.mk @@ -0,0 +1,36 @@ +# +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# The Initial Developer of the Original Code is +# Peter Foley +# Portions created by the Initial Developer are Copyright (C) 2011 the +# Initial Developer. All Rights Reserved. +# +# Major Contributor(s): +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. +# + +$(eval $(call gb_Module_Module,twain)) + +ifeq ($(OS),WNT) +$(eval $(call gb_Module_add_targets,twain,\ + Package_inc \ +)) +endif diff --git a/twain/Package_inc.mk b/twain/Package_inc.mk new file mode 100644 index 000000000000..d2c14ed2efc2 --- /dev/null +++ b/twain/Package_inc.mk @@ -0,0 +1,32 @@ +# +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# The Initial Developer of the Original Code is +# Peter Foley +# Portions created by the Initial Developer are Copyright (C) 2011 the +# Initial Developer. All Rights Reserved. +# +# Major Contributor(s): +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. +# + +$(eval $(call gb_Package_Package,twain_inc,$(SRCDIR)/twain/inc)) + +$(eval $(call gb_Package_add_file,twain_inc,inc/external/twain/twain.h,twain.h)) diff --git a/twain/prj/build.lst b/twain/prj/build.lst index cfeab258dc06..875fc98e15a6 100644 --- a/twain/prj/build.lst +++ b/twain/prj/build.lst @@ -1,3 +1,2 @@ tw twain : solenv NULL -tw twain usr1 - all tw_mkout NULL -tw twain\util nmake - n tw_util NULL +tw twain\prj nmake - all tw_util NULL diff --git a/twain/prj/d.lst b/twain/prj/d.lst index 0827b03d1cd9..e69de29bb2d1 100644 --- a/twain/prj/d.lst +++ b/twain/prj/d.lst @@ -1,3 +0,0 @@ -mkdir: %_DEST%\inc\external -mkdir: %_DEST%\inc\external\twain -..\%__SRC%\inc\twain.h %_DEST%\inc\external\twain\twain.h diff --git a/twain/prj/makefile.mk b/twain/prj/makefile.mk new file mode 100644 index 000000000000..85b25665cc83 --- /dev/null +++ b/twain/prj/makefile.mk @@ -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 +# +# 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$(GMAKE_MODULE_PARALLELISM) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog diff --git a/twain/util/makefile.mk b/twain/util/makefile.mk deleted file mode 100644 index 043de88badb2..000000000000 --- a/twain/util/makefile.mk +++ /dev/null @@ -1,39 +0,0 @@ -#************************************************************************* -# -# 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 -# -# for a copy of the LGPLv3 License. -# -#************************************************************************* - -PRJ := .. -PRJNAME := twain -TARGET := twain - -.INCLUDE: settings.mk -.INCLUDE: target.mk - -ALLTAR: $(OUT)$/inc$/twain.h - -$(OUT)$/inc$/%: $(PRJ)$/inc$/% - - $(MKDIR) $(@:d) - $(COPY) $< $@ -- cgit