1# $FreeBSD$ 2# 3# Doing a make install builds /usr/share/sendmail/ 4 5SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail 6CFDIR= cf 7CFPACKAGE= sendmail 8CFDIRS!= (cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( \( -name CVS -o -name .svn \) -prune \) -o -type d -print) 9CFFILES!= (cd ${SENDMAIL_DIR}; find -L ${CFDIR} \( \( -name CVS -o -name .svn \) -prune \) -o -type f -print) 10 11DDIR= ${DESTDIR}${SHAREDIR}/sendmail 12 13# Define SHARED to indicate whether you want symbolic links to the system 14# source (``symlinks''), or a separate copy (``copies'') 15SHARED?= copies 16 17all clean cleandir depend lint tags: 18 19beforeinstall: ${SHARED} 20META_TARGETS+= copies symlinks 21 22copies: ${META_DEPS} 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 31symlinks: ${META_DEPS} 32 rm -rf ${DDIR}/${CFDIR}; ln -s ${SENDMAIL_DIR}/${CFDIR} ${DDIR}/${CFDIR} 33 34.include <bsd.prog.mk> 35