Deleted Added
full compact
Makefile (300906) Makefile (301226)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD: head/lib/Makefile 300906 2016-05-28 17:43:40Z asomers $
2# $FreeBSD: head/lib/Makefile 301226 2016-06-02 19:06:04Z lidl $
3
4.include <src.opts.mk>
5
6# The SUBDIR_ORDERED list is a small set of libraries which are used by many
7# of the other libraries. These are built first with a .WAIT between them
8# and the main list to avoid needing a SUBDIR_DEPEND line on every library
9# naming just these few items.
10

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

23
24SUBDIR= ${SUBDIR_ORDERED} \
25 .WAIT \
26 libalias \
27 libarchive \
28 ${_libatm} \
29 libauditd \
30 libbegemot \
3
4.include <src.opts.mk>
5
6# The SUBDIR_ORDERED list is a small set of libraries which are used by many
7# of the other libraries. These are built first with a .WAIT between them
8# and the main list to avoid needing a SUBDIR_DEPEND line on every library
9# naming just these few items.
10

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

23
24SUBDIR= ${SUBDIR_ORDERED} \
25 .WAIT \
26 libalias \
27 libarchive \
28 ${_libatm} \
29 libauditd \
30 libbegemot \
31 ${_libblacklist} \
31 libblocksruntime \
32 ${_libbluetooth} \
33 ${_libbsnmp} \
34 libbsdstat \
35 libbsm \
36 libbz2 \
37 libcalendar \
38 libcam \

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

156SUBDIR_DEPEND_liblzma= ${_libthr}
157
158# NB: keep these sorted by MK_* knobs
159
160.if ${MK_ATM} != "no"
161_libngatm= libngatm
162.endif
163
32 libblocksruntime \
33 ${_libbluetooth} \
34 ${_libbsnmp} \
35 libbsdstat \
36 libbsm \
37 libbz2 \
38 libcalendar \
39 libcam \

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

157SUBDIR_DEPEND_liblzma= ${_libthr}
158
159# NB: keep these sorted by MK_* knobs
160
161.if ${MK_ATM} != "no"
162_libngatm= libngatm
163.endif
164
165.if ${MK_BLACKLIST_SUPPORT} != "no"
166_libblacklist= libblacklist
167.endif
168
164.if ${MK_BLUETOOTH} != "no"
165_libbluetooth= libbluetooth
166_libsdp= libsdp
167.endif
168
169.if ${MK_BSNMP} != "no"
170_libbsnmp= libbsnmp
171.endif

--- 146 unchanged lines hidden ---
169.if ${MK_BLUETOOTH} != "no"
170_libbluetooth= libbluetooth
171_libsdp= libsdp
172.endif
173
174.if ${MK_BSNMP} != "no"
175_libbsnmp= libbsnmp
176.endif

--- 146 unchanged lines hidden ---