summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-05-19 16:56:50 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-05-19 16:56:50 +0000
commit9ce15f02f79dcf85a8c6eff85e7c052ec86e25a1 (patch)
tree0ae44f09c46c0f70b00bcee8d4d7bcd8325b5744 /usr.sbin
parent08ebc650a3636ae13b457c1b42ad378e14d29578 (diff)
sendmail 8.9.1
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/sendmail/cf/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/usr.sbin/sendmail/cf/Makefile b/usr.sbin/sendmail/cf/Makefile
new file mode 100644
index 00000000000..2815f32636a
--- /dev/null
+++ b/usr.sbin/sendmail/cf/Makefile
@@ -0,0 +1,30 @@
+# $OpenBSD: Makefile,v 1.1 1998/05/19 16:56:49 millert Exp $
+#
+
+NOOBJ= noobj
+FILES= README
+DIRS= cf domain feature hack m4 mailer ostype sh siteconfig
+
+install:
+ @${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
+ ${DESTDIR}${SHAREDIR}/sendmail
+ @echo installing ${FILES}
+ @-for i in ${FILES}; do \
+ cmp -s $$i ${DESTDIR}${SHAREDIR}/sendmail/$$i || \
+ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \
+ -m 444 $$i ${DESTDIR}${SHAREDIR}/sendmail/$$i ; \
+ done
+ @echo installing ${DIRS}
+ @-for i in ${DIRS}; do \
+ ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
+ ${DESTDIR}${SHAREDIR}/sendmail/$$i; \
+ (cd $$i; for j in *.m[4c] *.sh Makefile; do \
+ if [ -f $$j ]; then \
+ cmp -s $$j ${DESTDIR}${SHAREDIR}/sendmail/$$i/$$j || \
+ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \
+ -m 444 $$j ${DESTDIR}${SHAREDIR}/sendmail/$$i/$$j; \
+ fi; \
+ done); \
+ done
+
+.include <bsd.prog.mk>