diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2002-04-06 23:18:01 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-04-06 23:18:01 +0000 |
commit | 9e3b0010176971fc4da7fd68991a816118053288 (patch) | |
tree | a2dd1dbef0c5c9eb6362307a5b2fb7718bca592d /gnu/usr.bin/cc/Makefile | |
parent | 4e6aeb72b4312c4c9bfb14910ff904403a004d40 (diff) |
Notes
Diffstat (limited to 'gnu/usr.bin/cc/Makefile')
-rw-r--r-- | gnu/usr.bin/cc/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/usr.bin/cc/Makefile b/gnu/usr.bin/cc/Makefile new file mode 100644 index 0000000000000..7b0fec3ec994e --- /dev/null +++ b/gnu/usr.bin/cc/Makefile @@ -0,0 +1,31 @@ +# $FreeBSD$ + +# The order of some of these are rather important. Some depend on previous +# subdirs. + +SUBDIR= cc_fbsd cc_tools cc_int cccp cc1 cc protoize + +.if !defined(NO_CPP) +SUBDIR+= cpp +.endif + +.if !defined(NO_CXX) +SUBDIR+= cc1plus c++ c++filt doc +.if !defined(NO_COLLECT2) +SUBDIR+= collect2 +.endif +.endif + +.if !defined(NO_OBJC) +SUBDIR+= cc1obj +.endif + +.if !defined(NO_FORTRAN) +SUBDIR+= f77 f771 f77doc +.endif + +.if !defined(NO_GCOV) +SUBDIR+= gcov +.endif + +.include <bsd.subdir.mk> |