Makefile (1bb8eb56ef2a2116347106c2df381e7d6801f328) Makefile (cd0d51baaa4509a1db83251a601d34404d20c990)
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6# The SUBDIR_BOOTSTRAP 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

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

13 .WAIT \
14 libc \
15 libc_nonshared \
16 libcompiler_rt \
17 ${_libclang_rt} \
18 ${_libcplusplus} \
19 ${_libcxxrt} \
20 libelf \
1# @(#)Makefile 8.1 (Berkeley) 6/4/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6# The SUBDIR_BOOTSTRAP 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

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

13 .WAIT \
14 libc \
15 libc_nonshared \
16 libcompiler_rt \
17 ${_libclang_rt} \
18 ${_libcplusplus} \
19 ${_libcxxrt} \
20 libelf \
21 libssp \
22 libssp_nonshared \
21 msun
22
23# The main list; please keep these sorted alphabetically.
24
25SUBDIR= ${SUBDIR_BOOTSTRAP} \
26 .WAIT \
27 geom \
28 libalias \

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

101# Inter-library dependencies. When the makefile for a library contains LDADD
102# libraries, those libraries should be listed as build order dependencies here.
103
104SUBDIR_DEPEND_geom= libufs
105SUBDIR_DEPEND_libarchive= libz libbz2 libexpat liblzma libmd libzstd
106SUBDIR_DEPEND_libauditdm= libbsm
107SUBDIR_DEPEND_libbsnmp= ${_libnetgraph}
108SUBDIR_DEPEND_libc++:= libcxxrt
23 msun
24
25# The main list; please keep these sorted alphabetically.
26
27SUBDIR= ${SUBDIR_BOOTSTRAP} \
28 .WAIT \
29 geom \
30 libalias \

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

103# Inter-library dependencies. When the makefile for a library contains LDADD
104# libraries, those libraries should be listed as build order dependencies here.
105
106SUBDIR_DEPEND_geom= libufs
107SUBDIR_DEPEND_libarchive= libz libbz2 libexpat liblzma libmd libzstd
108SUBDIR_DEPEND_libauditdm= libbsm
109SUBDIR_DEPEND_libbsnmp= ${_libnetgraph}
110SUBDIR_DEPEND_libc++:= libcxxrt
109SUBDIR_DEPEND_libc= libcompiler_rt
111# libssp_nonshared doesn't need to be linked into libc on every arch, but it is
112# small enough to build that this bit of serialization is likely insignificant.
113SUBDIR_DEPEND_libc= libcompiler_rt libssp_nonshared
110SUBDIR_DEPEND_libcam= libsbuf
111SUBDIR_DEPEND_libcasper= libnv
112SUBDIR_DEPEND_libdevstat= libkvm
113SUBDIR_DEPEND_libdpv= libfigpar ncurses libutil
114SUBDIR_DEPEND_libedit= ncurses
115SUBDIR_DEPEND_libgeom= libexpat libsbuf
116SUBDIR_DEPEND_librpcsec_gss= libgssapi
117SUBDIR_DEPEND_libmagic= libz

--- 102 unchanged lines hidden ---
114SUBDIR_DEPEND_libcam= libsbuf
115SUBDIR_DEPEND_libcasper= libnv
116SUBDIR_DEPEND_libdevstat= libkvm
117SUBDIR_DEPEND_libdpv= libfigpar ncurses libutil
118SUBDIR_DEPEND_libedit= ncurses
119SUBDIR_DEPEND_libgeom= libexpat libsbuf
120SUBDIR_DEPEND_librpcsec_gss= libgssapi
121SUBDIR_DEPEND_libmagic= libz

--- 102 unchanged lines hidden ---