blob: a94347374864b051e4d26a764ec1bbcbb332f7f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# Makefile
#
all:
python3 certdata2pem.py
clean:
-rm -f *.crt
install:
install -d $(CERTSDIR)
for p in *.crt; do \
install -m 644 $$p $(CERTSDIR)/$$p ; \
done
update:
wget -Ocertdata.txt https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/certdata.txt
wget -Onssckbi.h https://hg.mozilla.org/releases/mozilla-release/raw-file/default/security/nss/lib/ckfw/builtins/nssckbi.h
false
|