Makefile revision 114775
1# $FreeBSD: head/share/sendmail/Makefile 114775 2003-05-06 03:38:24Z gshapiro $
2#
3# Doing a make install builds /usr/share/sendmail/
4
5MAINTAINER=	gshapiro@FreeBSD.org
6
7SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
8CFDIR=	cf
9CFDIRS!=	(cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( -name CVS -prune \) -o -type d -print)
10CFFILES!=	(cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( -name CVS -prune \) -o -type f -print)
11
12DDIR=	${DESTDIR}/usr/share/sendmail
13
14NOOBJ=	noobj
15
16# Define SHARED to indicate whether you want symbolic links to the system
17# source (``symlinks''), or a separate copy (``copies'')
18SHARED?=	copies
19
20all clean cleandir depend lint tags:
21
22beforeinstall: ${SHARED}
23
24copies::
25	if [ -L ${DDIR}/${CFDIR} ]; then rm -f ${DDIR}/${CFDIR}; fi
26.for dir in ${CFDIRS}
27	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 755 -d ${DDIR}/${dir}
28.endfor
29.for file in ${CFFILES}
30	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 ${SENDMAIL_DIR}/${file} ${DDIR}/${file}
31.endfor
32
33symlinks::
34	rm -rf ${DDIR}/${CFDIR}; ln -s ${SENDMAIL_DIR}/${CFDIR} ${DDIR}/${CFDIR}
35
36.include <bsd.prog.mk>
37