Deleted Added
full compact
Makefile (124214) Makefile (124831)
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
2# $FreeBSD: head/etc/Makefile 124214 2004-01-07 11:55:44Z des $
2# $FreeBSD: head/etc/Makefile 124831 2004-01-22 08:18:37Z ru $
3
4.if !defined(NO_SENDMAIL)
5SUBDIR= sendmail
6.endif
7
8BIN1= amd.map apmd.conf auth.conf \
9 crontab csh.cshrc csh.login csh.logout devd.conf devfs.conf \
10 dhclient.conf disktab fbtab ftpusers gettytab group \

--- 40 unchanged lines hidden (view full) ---

51.else
52ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
53 mailertable.sample aliases
54.endif
55
56# Special top level files for FreeBSD
57FREEBSD=COPYRIGHT
58
3
4.if !defined(NO_SENDMAIL)
5SUBDIR= sendmail
6.endif
7
8BIN1= amd.map apmd.conf auth.conf \
9 crontab csh.cshrc csh.login csh.logout devd.conf devfs.conf \
10 dhclient.conf disktab fbtab ftpusers gettytab group \

--- 40 unchanged lines hidden (view full) ---

51.else
52ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
53 mailertable.sample aliases
54.endif
55
56# Special top level files for FreeBSD
57FREEBSD=COPYRIGHT
58
59afterinstall:
60.if !defined(NOMAN)
61 cd ${.CURDIR}/../share/man; ${MAKE} makedb
62.endif
63
59distribute:
64distribute:
65 cd ${.CURDIR} ; ${MAKE} install DESTDIR=${DISTDIR}/${DISTRIBUTION}
60 cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
61 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
62 ${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints \
63 ${DISTDIR}/${DISTRIBUTION}/boot/device.hints
64
65distribution:
66 cd ${.CURDIR}; \
67 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \

--- 83 unchanged lines hidden (view full) ---

151 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
152 ${DESTDIR}/var/log/wtmp
153 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
154 ${DESTDIR}/var/run/utmp
155 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
156 ${DESTDIR}/var/crash
157 cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
158 ${FREEBSD} ${DESTDIR}/
66 cd ${.CURDIR} ; ${MAKE} distribution DESTDIR=${DISTDIR}/${DISTRIBUTION}
67 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
68 ${.CURDIR}/../sys/${MACHINE}/conf/GENERIC.hints \
69 ${DISTDIR}/${DISTRIBUTION}/boot/device.hints
70
71distribution:
72 cd ${.CURDIR}; \
73 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \

--- 83 unchanged lines hidden (view full) ---

157 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
158 ${DESTDIR}/var/log/wtmp
159 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
160 ${DESTDIR}/var/run/utmp
161 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/minfree \
162 ${DESTDIR}/var/crash
163 cd ${.CURDIR}/..; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 444 \
164 ${FREEBSD} ${DESTDIR}/
159.if !defined(NOMAN)
160 cd ${.CURDIR}/../share/man; ${MAKE} makedb
161.endif
162
163distrib-dirs:
164 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
165 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
166 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
167 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
168 -p ${DESTDIR}/usr/include
169.if !defined(NO_SENDMAIL)

--- 38 unchanged lines hidden ---
165
166distrib-dirs:
167 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
168 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
169 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
170 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
171 -p ${DESTDIR}/usr/include
172.if !defined(NO_SENDMAIL)

--- 38 unchanged lines hidden ---