summaryrefslogtreecommitdiff
path: root/moz/CustomTarget_runtime.mk
blob: 1296f2ae6ea2778dbf5416c2c9bb28931fd4d507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- 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: