Deleted Added
full compact
Makefile (278067) Makefile (278558)
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
1# from: @(#)Makefile 5.11 (Berkeley) 5/21/91
2# $FreeBSD: stable/10/etc/Makefile 278067 2015-02-02 09:24:40Z ngie $
2# $FreeBSD: stable/10/etc/Makefile 278558 2015-02-11 07:30:20Z ngie $
3
4.include <bsd.own.mk>
5
6SUBDIR= \
7 newsyslog.conf.d
8
9.if ${MK_SENDMAIL} != "no"
10SUBDIR+=sendmail
11.endif
12
13.if ${MK_TESTS} != "no"
14SUBDIR+=tests
15.endif
16
3
4.include <bsd.own.mk>
5
6SUBDIR= \
7 newsyslog.conf.d
8
9.if ${MK_SENDMAIL} != "no"
10SUBDIR+=sendmail
11.endif
12
13.if ${MK_TESTS} != "no"
14SUBDIR+=tests
15.endif
16
17BIN1= auto_master \
18 crontab \
17BIN1= crontab \
19 devd.conf \
20 devfs.conf \
21 ddb.conf \
22 dhclient.conf \
23 disktab \
24 fbtab \
25 ftpusers \
26 gettytab \

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

85.if ${MK_AMD} != "no"
86BIN1+= amd.map
87.endif
88
89.if ${MK_APM} != "no"
90BIN1+= apmd.conf
91.endif
92
18 devd.conf \
19 devfs.conf \
20 ddb.conf \
21 dhclient.conf \
22 disktab \
23 fbtab \
24 ftpusers \
25 gettytab \

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

84.if ${MK_AMD} != "no"
85BIN1+= amd.map
86.endif
87
88.if ${MK_APM} != "no"
89BIN1+= apmd.conf
90.endif
91
92.if ${MK_AUTOFS} != "no"
93BIN1+= auto_master
94.endif
95
93.if ${MK_BSNMP} != "no"
94BIN1+= snmpd.config
95.endif
96
97.if ${MK_FREEBSD_UPDATE} != "no"
98BIN1+= freebsd-update.conf
99.endif
100

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

224.if defined(NO_ROOT)
225 ( \
226 echo "./etc/login.conf.db type=file mode=0644 uname=root gname=wheel"; \
227 echo "./etc/passwd type=file mode=0644 uname=root gname=wheel"; \
228 echo "./etc/pwd.db type=file mode=0644 uname=root gname=wheel"; \
229 echo "./etc/spwd.db type=file mode=0600 uname=root gname=wheel"; \
230 ) | ${METALOG.add}
231.endif
96.if ${MK_BSNMP} != "no"
97BIN1+= snmpd.config
98.endif
99
100.if ${MK_FREEBSD_UPDATE} != "no"
101BIN1+= freebsd-update.conf
102.endif
103

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

227.if defined(NO_ROOT)
228 ( \
229 echo "./etc/login.conf.db type=file mode=0644 uname=root gname=wheel"; \
230 echo "./etc/passwd type=file mode=0644 uname=root gname=wheel"; \
231 echo "./etc/pwd.db type=file mode=0644 uname=root gname=wheel"; \
232 echo "./etc/spwd.db type=file mode=0600 uname=root gname=wheel"; \
233 ) | ${METALOG.add}
234.endif
235.if ${MK_AUTOFS} != "no"
232 ${_+_}cd ${.CURDIR}/autofs; ${MAKE} install
236 ${_+_}cd ${.CURDIR}/autofs; ${MAKE} install
237.endif
233.if ${MK_BLUETOOTH} != "no"
234 ${_+_}cd ${.CURDIR}/bluetooth; ${MAKE} install
235.endif
236 ${_+_}cd ${.CURDIR}/defaults; ${MAKE} install
237 ${_+_}cd ${.CURDIR}/devd; ${MAKE} install
238 ${_+_}cd ${.CURDIR}/gss; ${MAKE} install
239 ${_+_}cd ${.CURDIR}/periodic; ${MAKE} install
240 ${_+_}cd ${.CURDIR}/pkg; ${MAKE} install

--- 163 unchanged lines hidden ---
238.if ${MK_BLUETOOTH} != "no"
239 ${_+_}cd ${.CURDIR}/bluetooth; ${MAKE} install
240.endif
241 ${_+_}cd ${.CURDIR}/defaults; ${MAKE} install
242 ${_+_}cd ${.CURDIR}/devd; ${MAKE} install
243 ${_+_}cd ${.CURDIR}/gss; ${MAKE} install
244 ${_+_}cd ${.CURDIR}/periodic; ${MAKE} install
245 ${_+_}cd ${.CURDIR}/pkg; ${MAKE} install

--- 163 unchanged lines hidden ---