Makefile (341B)
- # Copyright © 2024 Haelwenn (lanodan) Monnier <contact+ca-certificates@hacktivis.me>
- # SPDX-License-Identifier: 0BSD
- all: certs.pem
- certs.pem: certs
- cat certs/*/*.pem > certs.pem
- certs: fetch.jq CertificatesAutorities.json
- jq -r -f fetch.jq CertificatesAutorities.json | sh -
- touch certs
- .PHONY: clean
- clean:
- rm -fr certs certs.pem