summaryrefslogtreecommitdiff
path: root/secure/caroot/trusted/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'secure/caroot/trusted/Makefile')
-rw-r--r--secure/caroot/trusted/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/secure/caroot/trusted/Makefile b/secure/caroot/trusted/Makefile
new file mode 100644
index 000000000000..f159edddff05
--- /dev/null
+++ b/secure/caroot/trusted/Makefile
@@ -0,0 +1,12 @@
+# $FreeBSD$
+
+BINDIR= /usr/share/certs/trusted
+
+TRUSTED_CERTS!= ls ${.CURDIR}/*.pem 2> /dev/null || true
+
+FILES+= ${TRUSTED_CERTS}
+
+cleancerts:
+ @[ -z "${TRUSTED_CERTS}" ] || rm ${TRUSTED_CERTS}
+
+.include <bsd.prog.mk>