office-gobmx/moz/CustomTarget_runtime.mk
Peter Foley 61e7c592fa convert moz to gbuild and add to tail_build
Change-Id: I2d3f5d127f831ee9abc020d46558f7cfbe8c9380
Reviewed-on: https://gerrit.libreoffice.org/2349
Reviewed-by: David Ostrovsky <David.Ostrovsky@gmx.de>
Tested-by: David Ostrovsky <David.Ostrovsky@gmx.de>
2013-02-24 10:34:40 +00:00

27 lines
744 B
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
MOZ_DEL_LIST := freebl3.dll \
nspr4.dll \
nss3.dll \
plc4.dll \
plds4.dll \
smime3.dll \
softokn3.dll \
ssl3.dll
$(eval $(call gb_CustomTarget_CustomTarget,moz/runtime))
$(eval $(call gb_CustomTarget_register_target,moz/runtime,mozruntime.zip))
$(call gb_CustomTarget_get_workdir,moz/runtime)/mozruntime.zip: $(TARFILE_LOCATION)/$(MOZ_ZIP_RUNTIME)
cp $< $@
zip -qd $@ $(MOZ_DEL_LIST)
# vim: set noet sw=4 ts=4: