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