Makefile revision 132751
1# $FreeBSD: head/gnu/usr.bin/cc/Makefile 132751 2004-07-28 05:27:21Z kan $
2
3# The order of some of these are rather important.  Some depend on previous
4# subdirs.
5
6SUBDIR= cc_tools cc_int cc cc1 include protoize doc
7
8.if !defined(NO_CPP)
9SUBDIR+= cpp
10.endif
11
12.if !defined(NO_CXX)
13SUBDIR+= cc1plus c++
14.if !defined(NO_COLLECT2)
15#SUBDIR+= collect2
16.endif
17.endif
18
19.if !defined(NO_OBJC)
20SUBDIR+= cc1obj
21.endif
22
23.if !defined(NO_FORTRAN)
24SUBDIR+= f77 f771 f77doc
25.endif
26
27.if !defined(NO_GCOV)
28SUBDIR+= gcov
29.endif
30
31.include <bsd.subdir.mk>
32