1 2CLEANFILES+= certdata.txt 3 4SUBDIR+= trusted 5SUBDIR+= untrusted 6 7.include <bsd.obj.mk> 8 9# To be used by secteam@ to update the trusted certificates 10fetchcerts: .PHONY 11 fetch --no-sslv3 --no-tlsv1 -o certdata.txt 'https://hg.mozilla.org/projects/nss/raw-file/tip/lib/ckfw/builtins/certdata.txt' 12 13cleancerts: .PHONY 14 @${MAKE} -C ${.CURDIR}/trusted ${.TARGET} 15 16updatecerts: .PHONY cleancerts fetchcerts 17 perl ${.CURDIR}/MAca-bundle.pl -i certdata.txt -o ${.CURDIR}/trusted 18