|
1 # |
|
2 # This Source Code Form is subject to the terms of the Mozilla Public |
|
3 # License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
|
5 |
|
6 GEN_CERT_HEADER = $(srcdir)/gen_cert_header.py |
|
7 |
|
8 marketplace-prod-public.inc: marketplace-prod-public.crt $(GEN_CERT_HEADER) |
|
9 $(PYTHON) $(GEN_CERT_HEADER) marketplaceProdPublicRoot $< > $@ |
|
10 |
|
11 marketplace-prod-reviewers.inc: marketplace-prod-reviewers.crt $(GEN_CERT_HEADER) |
|
12 $(PYTHON) $(GEN_CERT_HEADER) marketplaceProdReviewersRoot $< > $@ |
|
13 |
|
14 marketplace-dev-public.inc: marketplace-dev-public.crt $(GEN_CERT_HEADER) |
|
15 $(PYTHON) $(GEN_CERT_HEADER) marketplaceDevPublicRoot $< > $@ |
|
16 |
|
17 marketplace-dev-reviewers.inc: marketplace-dev-reviewers.crt $(GEN_CERT_HEADER) |
|
18 $(PYTHON) $(GEN_CERT_HEADER) marketplaceDevReviewersRoot $< > $@ |
|
19 |
|
20 xpcshell.inc: $(srcdir)/../manager/ssl/tests/unit/test_signed_apps/trusted_ca1.der $(GEN_CERT_HEADER) |
|
21 $(PYTHON) $(GEN_CERT_HEADER) xpcshellRoot $< > $@ |
|
22 |
|
23 export:: \ |
|
24 marketplace-prod-public.inc \ |
|
25 marketplace-prod-reviewers.inc \ |
|
26 marketplace-dev-public.inc \ |
|
27 marketplace-dev-reviewers.inc \ |
|
28 xpcshell.inc \ |
|
29 $(NULL) |