Makefile revision 156935
1# $FreeBSD: head/gnu/usr.bin/cc/Makefile 156935 2006-03-21 08:59:36Z ru $
2
3.include <bsd.own.mk>
4
5# The order of some of these are rather important.  Some depend on previous
6# subdirs.
7
8SUBDIR= cc_tools cc_int cc cc1 include protoize doc
9
10.if ${MK_CPP} != "no"
11SUBDIR+= cpp
12.endif
13
14.if ${MK_CXX} != "no"
15SUBDIR+= cc1plus c++ c++filt
16#.if ${MK_COLLECT2} != "no"
17#SUBDIR+= collect2
18#.endif
19.endif
20
21.if ${MK_OBJC} != "no"
22SUBDIR+= cc1obj
23.endif
24
25.if ${MK_FORTRAN} != "no"
26SUBDIR+= f77 f771 f77doc
27.endif
28
29.if ${MK_GCOV} != "no"
30SUBDIR+= gcov
31.endif
32
33.include <bsd.subdir.mk>
34