diff options
Diffstat (limited to 'mozilla/Makefile')
-rw-r--r-- | mozilla/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mozilla/Makefile b/mozilla/Makefile new file mode 100644 index 0000000..a943473 --- /dev/null +++ b/mozilla/Makefile @@ -0,0 +1,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 |