Deleted Added
full compact
Makefile (94694) Makefile (95144)
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
2# $FreeBSD: head/etc/Makefile 94694 2002-04-14 22:35:46Z dougb $
2# $FreeBSD: head/etc/Makefile 95144 2002-04-20 19:00:11Z gshapiro $
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 \
10 dhclient.conf dm.conf fbtab ftpusers gettytab group \

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

37SSL= ${.CURDIR}/../crypto/openssl/apps/openssl.cnf
38.endif
39
40# -rwxr-xr-x root:wheel, for the new cron root:wheel
41BIN2= netstart pccard_ether rc.suspend rc.resume
42
43MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
44 BSD.var.dist BSD.x11.dist BSD.x11-4.dist
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 \
10 dhclient.conf dm.conf fbtab ftpusers gettytab group \

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

37SSL= ${.CURDIR}/../crypto/openssl/apps/openssl.cnf
38.endif
39
40# -rwxr-xr-x root:wheel, for the new cron root:wheel
41BIN2= netstart pccard_ether rc.suspend rc.resume
42
43MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
44 BSD.var.dist BSD.x11.dist BSD.x11-4.dist
45.if !defined(NO_SENDMAIL)
46MTREE+= BSD.sendmail.dist
47.endif
45NAMEDB= PROTO.localhost.rev PROTO.localhost-v6.rev named.conf named.root \
46 make-localhost
47PPPCNF= ppp.conf
48ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
49 mailertable.sample aliases
50
51
52# Special top level files for FreeBSD

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

175 done
176 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
177 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
178 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
179 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
180 -p ${DESTDIR}/usr/include
181 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
182 -p ${DESTDIR}/usr/libdata/perl/5.6.1/mach
48NAMEDB= PROTO.localhost.rev PROTO.localhost-v6.rev named.conf named.root \
49 make-localhost
50PPPCNF= ppp.conf
51ETCMAIL=Makefile README mailer.conf access.sample virtusertable.sample \
52 mailertable.sample aliases
53
54
55# Special top level files for FreeBSD

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

178 done
179 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.root.dist -p ${DESTDIR}/
180 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.var.dist -p ${DESTDIR}/var
181 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.usr.dist -p ${DESTDIR}/usr
182 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
183 -p ${DESTDIR}/usr/include
184 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.include.dist \
185 -p ${DESTDIR}/usr/libdata/perl/5.6.1/mach
186.if !defined(NO_SENDMAIL)
187 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/mtree/BSD.sendmail.dist -p ${DESTDIR}/
188.endif
183 cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys
184 cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ln -sf ../man* .
185 cd ${DESTDIR}/usr/share/man; \
186 set - `grep "^[a-zA-Z]" ${.CURDIR}/man.alias`; \
187 while [ $$# -gt 0 ] ; \
188 do \
189 rm -rf "$$1"; \
190 ln -s "$$2" "$$1"; \

--- 31 unchanged lines hidden ---
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"; \

--- 31 unchanged lines hidden ---