summaryrefslogtreecommitdiff
path: root/postprocess/CustomTarget_signing.mk
blob: f160b8e1818264b8ec0334be436c1b2e30042f3c (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- 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/.
#

$(eval $(call gb_CustomTarget_CustomTarget,postprocess/signing))

$(eval $(call gb_CustomTarget_register_targets,postprocess/signing,\
	signing.done \
))

# PFXFILE and PFXPASSWORD should be set in environment
TIMESTAMPURL ?= "http://timestamp.verisign.com/scripts/timstamp.dll"

$(call gb_CustomTarget_get_workdir,postprocess/signing)/signing.done: \
	$(SRCDIR)/postprocess/signing/signing.pl \
	$(SRCDIR)/postprocess/signing/no_signing.txt \

$(call gb_CustomTarget_get_workdir,postprocess/signing)/signing.done:
	$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRL,2)
ifeq ($(COM),MSC)
ifeq ($(PRODUCT),full)
	$(PERL) $< -e $(SRCDIR)/postprocess/signing/no_signing.txt
			-l $(subst .done,_log.txt,$@) \
			-f $(PFXFILE) \
			-p $(PFXPASSWORD) \
			-t $(TIMESTAMPURL) \
			$(OUTDIR)/bin/*.dll $(OUTDIR)/bin/so/*.dll \
			$(OUTDIR)/bin/*.exe $(OUTDIR)/bin/so/*.exe \
	&& touch $@
else
	@echo "Doing nothing on non product builds ..."
endif
else
	@echo "Nothing to do, signing is Windows (MSC) only."
endif

# vim: set noet sw=4 ts=4: