1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/security/apps/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +# 1.5 +# This Source Code Form is subject to the terms of the Mozilla Public 1.6 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.8 + 1.9 +GEN_CERT_HEADER = $(srcdir)/gen_cert_header.py 1.10 + 1.11 +marketplace-prod-public.inc: marketplace-prod-public.crt $(GEN_CERT_HEADER) 1.12 + $(PYTHON) $(GEN_CERT_HEADER) marketplaceProdPublicRoot $< > $@ 1.13 + 1.14 +marketplace-prod-reviewers.inc: marketplace-prod-reviewers.crt $(GEN_CERT_HEADER) 1.15 + $(PYTHON) $(GEN_CERT_HEADER) marketplaceProdReviewersRoot $< > $@ 1.16 + 1.17 +marketplace-dev-public.inc: marketplace-dev-public.crt $(GEN_CERT_HEADER) 1.18 + $(PYTHON) $(GEN_CERT_HEADER) marketplaceDevPublicRoot $< > $@ 1.19 + 1.20 +marketplace-dev-reviewers.inc: marketplace-dev-reviewers.crt $(GEN_CERT_HEADER) 1.21 + $(PYTHON) $(GEN_CERT_HEADER) marketplaceDevReviewersRoot $< > $@ 1.22 + 1.23 +xpcshell.inc: $(srcdir)/../manager/ssl/tests/unit/test_signed_apps/trusted_ca1.der $(GEN_CERT_HEADER) 1.24 + $(PYTHON) $(GEN_CERT_HEADER) xpcshellRoot $< > $@ 1.25 + 1.26 +export:: \ 1.27 + marketplace-prod-public.inc \ 1.28 + marketplace-prod-reviewers.inc \ 1.29 + marketplace-dev-public.inc \ 1.30 + marketplace-dev-reviewers.inc \ 1.31 + xpcshell.inc \ 1.32 + $(NULL)