Makefile revision 58318
1# $FreeBSD: head/gnu/usr.bin/cc/Makefile 58318 2000-03-19 23:47:50Z obrien $
2
3# The order of some of these are rather important.  Some depend on previous
4# subdirs.
5
6SUBDIR= cc_fbsd cc_tools cc_int cccp cc1 cc
7
8.if !defined(NO_CPP)
9SUBDIR+= cpp
10.endif
11
12.if !defined(NO_CXX)
13SUBDIR+= cc1plus c++ c++filt doc
14.endif
15
16.if !defined(NO_OBJC)
17SUBDIR+= cc1obj
18.endif
19
20.if !defined(NO_FORTRAN)
21SUBDIR+= f77 f771 f77doc
22.endif
23
24.include <bsd.subdir.mk>
25