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