]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - gnu/usr.bin/cc/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / gnu / usr.bin / cc / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 # The order of some of these are rather important.  Some depend on previous
6 # subdirs.
7
8 SUBDIR= cc_tools libiberty libcpp libdecnumber cc_int cc cc1 include doc
9
10 .if ${MK_CPP} != "no"
11 SUBDIR+= cpp
12 .endif
13
14 .if ${MK_CXX} != "no"
15 .if ${MK_GNUCXX} != "no"
16 SUBDIR+= cc1plus c++ 
17 .endif
18 # This should be moved into the above block once c++filt from elftoolchain or
19 # similar is provided.
20 SUBDIR+= c++filt
21 .endif
22
23 .if ${MK_GCOV} != "no"
24 SUBDIR+= gcov
25 .endif
26
27 .include <bsd.subdir.mk>