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