]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - gnu/usr.bin/cc/Makefile
dts: Import DTS for arm64
[FreeBSD/FreeBSD.git] / gnu / usr.bin / cc / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 # The order of some of these are rather important.  Some depend on previous
6 # subdirs.
7
8 SUBDIR= cc_tools .WAIT \
9         libiberty libcpp libdecnumber cc_int cc cc1 include
10
11 .if ${MK_CPP} != "no"
12 SUBDIR+= cpp
13 .endif
14
15 .if ${MK_CXX} != "no"
16 SUBDIR+= cc1plus c++
17 .endif
18
19 .if ${MK_GCOV} != "no"
20 SUBDIR+= gcov
21 .endif
22
23 SUBDIR_DEPEND_c++:=     libcpp libiberty
24 SUBDIR_DEPEND_cc=       libcpp libiberty
25 SUBDIR_DEPEND_cpp=      libcpp libiberty
26 SUBDIR_DEPEND_cc1plus=  cc_int libcpp libdecnumber libiberty
27 SUBDIR_DEPEND_cc1=      cc_int libcpp libdecnumber libiberty
28 SUBDIR_DEPEND_gcov=     libiberty
29
30 SUBDIR_PARALLEL=
31
32 .include <bsd.subdir.mk>