Makefile revision 74313
1# $FreeBSD: head/gnu/usr.bin/cc/Makefile 74313 2001-03-15 23:20:13Z obrien $
2
3#	In my absence, bde and jdp have pre-approval for any commit they feel
4#	necessary.
5MAINTAINER=	obrien@FreeBSD.org
6
7# The order of some of these are rather important.  Some depend on previous
8# subdirs.
9
10SUBDIR= cc_fbsd cc_tools cc_int cccp cc1 cc
11
12.if !defined(NO_CPP)
13SUBDIR+= cpp
14.endif
15
16.if !defined(NO_CXX)
17SUBDIR+= cc1plus c++ c++filt doc
18.endif
19
20.if !defined(NO_OBJC)
21SUBDIR+= cc1obj
22.endif
23
24.if !defined(NO_FORTRAN)
25SUBDIR+= f77 f771 f77doc
26.endif
27
28.if !defined(NO_GCOV)
29SUBDIR+= gcov
30.endif
31
32.include <bsd.subdir.mk>
33