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