Deleted Added
full compact
Makefile (135851) Makefile (135875)
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
2# $FreeBSD: head/etc/Makefile 135851 2004-09-27 08:23:43Z dougb $
2# $FreeBSD: head/etc/Makefile 135875 2004-09-28 09:46:00Z dougb $
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 \

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

174 ${DESTDIR}/boot/device.hints
175
176distrib-dirs:
177 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
178 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
179 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
180 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
181 -p ${DESTDIR}/usr/include
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 \

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

174 ${DESTDIR}/boot/device.hints
175
176distrib-dirs:
177 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
178 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
179 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
180 mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
181 -p ${DESTDIR}/usr/include
182.if !defined(NO_SENDMAIL)
183 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
184.endif
185.if defined(WITH_BIND_LIBS) && !defined(NO_BIND)
182.if !defined(NO_BIND)
183.if defined(WITH_BIND_LIBS)
186 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BIND.include.dist \
187 -p ${DESTDIR}/usr/include
188.endif
184 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BIND.include.dist \
185 -p ${DESTDIR}/usr/include
186.endif
187 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BIND.chroot.dist \
188 -p ${DESTDIR}/var/named
189 ln -s ${DESTDIR}/var/named/etc/namedb ${DESTDIR}/etc/namedb
190.endif
191.if !defined(NO_SENDMAIL)
192 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
193.endif
189 cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys
190 cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ln -sf ../man* .
191 cd ${DESTDIR}/usr/share/man; \
192 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
193 while [ $$# -gt 0 ] ; \
194 do \
195 rm -rf "$$1"; \
196 ln -s "$$2" "$$1"; \

--- 28 unchanged lines hidden ---
194 cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys
195 cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ln -sf ../man* .
196 cd ${DESTDIR}/usr/share/man; \
197 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
198 while [ $$# -gt 0 ] ; \
199 do \
200 rm -rf "$$1"; \
201 ln -s "$$2" "$$1"; \

--- 28 unchanged lines hidden ---