2010-04-17 05:41:17 -05:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
|
|
|
# Copyright 2009 by Sun Microsystems, Inc.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
define NEWLINE
|
|
|
|
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
COMMA :=,
|
|
|
|
|
|
|
|
gb_Helper_NULLFILE := /dev/null
|
|
|
|
|
|
|
|
gb_Helper_MISC := $(WORKDIR)/Misc
|
2010-11-10 08:26:03 -06:00
|
|
|
|
|
|
|
# general propose phony target
|
2010-04-17 05:41:17 -05:00
|
|
|
gb_Helper_PHONY := $(gb_Helper_MISC)/PHONY
|
2010-11-10 08:26:03 -06:00
|
|
|
|
|
|
|
# general propose empty dummy target
|
2010-04-17 05:41:17 -05:00
|
|
|
gb_Helper_MISCDUMMY := $(gb_Helper_MISC)/DUMMY
|
|
|
|
|
2010-11-10 08:26:03 -06:00
|
|
|
# if ($true) then old files will get removed from the target location before
|
|
|
|
# they are copied there. In multi-user environments, this is needed you need to
|
|
|
|
# be the owner of the target file to be able to cp -pf
|
|
|
|
gb_Helper_CLEARONDELIVER := $(true)
|
|
|
|
|
2010-04-17 05:41:17 -05:00
|
|
|
.PHONY : $(WORKDIR)/Misc/PHONY
|
|
|
|
$(gb_Helper_MISCDUMMY) :
|
|
|
|
@mkdir -p $(dir $@) && touch $@
|
|
|
|
|
|
|
|
define gb_Helper_announce
|
|
|
|
$(info $(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_Helper_abbreviate_dirs
|
2010-06-25 06:50:06 -05:00
|
|
|
R=$(REPODIR) && \
|
|
|
|
$(subst $(REPODIR)/,$$R/,S=$(SRCDIR) && \
|
2010-05-07 10:23:27 -05:00
|
|
|
$(subst $(SRCDIR)/,$$S/,O=$(OUTDIR)) && \
|
2010-06-25 06:50:06 -05:00
|
|
|
$(subst $(SRCDIR)/,$$S/,$(subst $(OUTDIR)/,$$O/,W=$(WORKDIR) && $(subst $(WORKDIR)/,$$W/,$(1)))))
|
2010-04-17 05:41:17 -05:00
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_Helper_make_clean_target
|
|
|
|
gb_$(1)_get_clean_target = $(WORKDIR)/Clean/$(1)/$$(1)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_Helper_make_outdir_clean_target
|
|
|
|
gb_$(1)_get_clean_target = $$(subst $(OUTDIR)/,$(WORKDIR)/Clean/OutDir/,$$(call gb_$(1)_get_target,$$(1)))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_Helper_make_dep_target
|
|
|
|
gb_$(1)_get_dep_target = $(WORKDIR)/Dep/$(1)/$$(1).d
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_Helper_make_clean_targets
|
|
|
|
$(foreach targettype,$(1),\
|
|
|
|
$(call gb_Helper_make_clean_target,$(targettype)))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_Helper_make_outdir_clean_targets
|
|
|
|
$(foreach targettype,$(1),\
|
|
|
|
$(call gb_Helper_make_outdir_clean_target,$(targettype)))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_Helper_make_dep_targets
|
|
|
|
$(foreach targettype,$(1),\
|
|
|
|
$(call gb_Helper_make_dep_target,$(targettype)))
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
define gb_Helper_get_outdir_clean_target
|
|
|
|
$$(subst $(OUTDIR)/,$(WORKDIR)/Clean/OutDir/,$(1))
|
|
|
|
endef
|
|
|
|
|
2010-11-10 08:26:03 -06:00
|
|
|
gb_Helper__deliverprefix = mkdir -p $(dir $(1)) &&
|
|
|
|
|
|
|
|
ifeq ($(gb_Helper_CLEARONDELIVER),$(true))
|
|
|
|
gb_Helper__deliverprefix += rm -rf $(1) &&
|
|
|
|
endif
|
|
|
|
|
|
|
|
define gb_Helper_deliver
|
2010-11-10 17:19:00 -06:00
|
|
|
$(call gb_Helper__deliverprefix,$(2)) cp -f $(1) $(2) && touch -r $(1) $(2)
|
2010-11-10 08:26:03 -06:00
|
|
|
endef
|
|
|
|
|
2010-04-17 05:41:17 -05:00
|
|
|
# vim: set noet sw=4 ts=4:
|