1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-22 11:17:19 +00:00
freebsd/gnu/usr.bin/cc/Makefile
Ruslan Ermilov a43171c248 Back out revision 1.30 change.
cc1plus can apparently be built if you happen to have
/usr/bin/gperf, or set CXX to point to a C++ compiler
that can build gperf(1) in the bootstrap-tools stage
of buildworld.
2002-05-17 05:41:47 +00:00

32 lines
493 B
Makefile

# $FreeBSD$
# The order of some of these are rather important. Some depend on previous
# subdirs.
SUBDIR= cc_fbsd cc_tools cc_int cc cc1 cpp0 protoize tradcpp0 doc
.if !defined(NO_CPP)
SUBDIR+= cpp
.endif
.if !defined(NO_CXX)
SUBDIR+= cc1plus c++ c++filt
.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>