d6c4eef6dd
collect2 was added based on the need of -frepo. However, -frepo is currently broken on -CURRENT (Gcc 2.95.4 20020320 [FreeBSD] / ld 2.12.0 [FreeBSD] 2002-04-10). It is also broken on RELENG_4 (Gcc 2.95.3 20010315 / ld 2.11.2 20010719), so there is no need to MFC collect2 there yet. I have a feeling the brokeness is due to the wide difference between the libiberty bits of Gcc 2.95 and the later ld. Testing by: fjoe
32 lines
477 B
Makefile
32 lines
477 B
Makefile
# $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
|
|
|
|
.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>
|