Cleanup NXENV so it works properly when running buildworld from FreeBSD.
[dragonfly.git] / share / sendmail / Makefile
1 # $FreeBSD: src/share/sendmail/Makefile,v 1.1.2.7 2003/05/10 17:24:25 gshapiro Exp $
2 # $DragonFly: src/share/sendmail/Makefile,v 1.3 2004/01/31 06:56:41 dillon Exp $
3 #
4 # Doing a make install builds /usr/share/sendmail/
5
6 SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
7 CFDIR=  cf
8 CFDIRS!=        (cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( -name CVS -prune \) -o -type d -print)
9 CFFILES!=       (cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( -name CVS -prune \) -o -type f -print)
10
11 DDIR=   ${DESTDIR}/usr/share/sendmail
12
13 NOOBJ=  noobj
14
15 # Define SHARED to indicate whether you want symbolic links to the system
16 # source (``symlinks''), or a separate copy (``copies'')
17 SHARED?=        copies
18
19 all clean cleandir depend lint tags:
20
21 beforeinstall: ${SHARED}
22
23 copies::
24         if [ -L ${DDIR}/${CFDIR} ]; then rm -f ${DDIR}/${CFDIR}; fi
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} -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>