Deleted Added
full compact
Makefile (59257) Makefile (60677)
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
2# $FreeBSD: head/etc/Makefile 59257 2000-04-15 16:48:41Z iwasaki $
2# $FreeBSD: head/etc/Makefile 60677 2000-05-18 05:21:50Z kris $
3
4SUBDIR= sendmail
5
6BIN1= aliases amd.map apmd.conf auth.conf \
7 crontab csh.cshrc csh.login csh.logout \
8 dhclient.conf dm.conf fbtab ftpusers gettytab group \
9 hosts hosts.allow host.conf hosts.equiv hosts.lpd \
10 inetd.conf login.access login.conf \

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

21 ${.CURDIR}/../usr.bin/mail/misc/mail.rc \
22 ${.CURDIR}/../usr.bin/locate/locate/locate.rc
23
24.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSH)
25SSH= ${.CURDIR}/../crypto/openssh/ssh_config \
26 ${.CURDIR}/../crypto/openssh/sshd_config
27.endif
28
3
4SUBDIR= sendmail
5
6BIN1= aliases amd.map apmd.conf auth.conf \
7 crontab csh.cshrc csh.login csh.logout \
8 dhclient.conf dm.conf fbtab ftpusers gettytab group \
9 hosts hosts.allow host.conf hosts.equiv hosts.lpd \
10 inetd.conf login.access login.conf \

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

21 ${.CURDIR}/../usr.bin/mail/misc/mail.rc \
22 ${.CURDIR}/../usr.bin/locate/locate/locate.rc
23
24.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSH)
25SSH= ${.CURDIR}/../crypto/openssh/ssh_config \
26 ${.CURDIR}/../crypto/openssh/sshd_config
27.endif
28
29.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL)
30SSL= ${.CURDIR}/../crypto/openssl/apps/openssl.cnf
31.endif
32
29# -rwxr-xr-x root.wheel, for the new cron root.wheel
30BIN2= netstart pccard_ether rc.suspend rc.resume
31
32MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
33 BSD.var.dist BSD.x11.dist
34NAMEDB= PROTO.localhost.rev named.conf named.root make-localhost
35PPPCNF= ppp.deny ppp.shells.sample
36PPPCF2= ppp.conf

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

72 ( cd ${.CURDIR}/isdn; ${MAKE} install ); \
73 pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; \
74 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
75 MAKEDEV.local MAKEDEV ${DESTDIR}/dev )
76.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSH)
77 (cd ${.CURDIR}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${SSH} \
78 ${DESTDIR}/etc/ssh )
79.endif
33# -rwxr-xr-x root.wheel, for the new cron root.wheel
34BIN2= netstart pccard_ether rc.suspend rc.resume
35
36MTREE= BSD.include.dist BSD.local.dist BSD.root.dist BSD.usr.dist \
37 BSD.var.dist BSD.x11.dist
38NAMEDB= PROTO.localhost.rev named.conf named.root make-localhost
39PPPCNF= ppp.deny ppp.shells.sample
40PPPCF2= ppp.conf

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

76 ( cd ${.CURDIR}/isdn; ${MAKE} install ); \
77 pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; \
78 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
79 MAKEDEV.local MAKEDEV ${DESTDIR}/dev )
80.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSH)
81 (cd ${.CURDIR}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${SSH} \
82 ${DESTDIR}/etc/ssh )
83.endif
84.if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSL)
85 (cd ${.CURDIR}; ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${SSL} \
86 ${DESTDIR}/etc/ssl )
87.endif
80.if !defined(NO_MAKEDEV)
81 (cd ${DESTDIR}/dev; sh MAKEDEV all)
82.endif
83 (cd ${.CURDIR}/root; \
84 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 dot.cshrc \
85 ${DESTDIR}/root/.cshrc; \
86 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 dot.klogin \
87 ${DESTDIR}/root/.klogin; \

--- 86 unchanged lines hidden ---
88.if !defined(NO_MAKEDEV)
89 (cd ${DESTDIR}/dev; sh MAKEDEV all)
90.endif
91 (cd ${.CURDIR}/root; \
92 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 dot.cshrc \
93 ${DESTDIR}/root/.cshrc; \
94 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 dot.klogin \
95 ${DESTDIR}/root/.klogin; \

--- 86 unchanged lines hidden ---