Don't build compiler-related libraries if using GCC 2.9.

This commit is contained in:
thorpej 2000-05-09 06:23:40 +00:00
parent 14dfd80261
commit 2b09e161ae
1 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# $NetBSD: Makefile,v 1.20 1999/02/09 17:48:13 tv Exp $
# $NetBSD: Makefile,v 1.21 2000/05/09 06:23:40 thorpej Exp $
SUBDIR+= libbfd libg2c libgcc libmalloc libobjc libstdc++
HAVE_GCC29!= ${CXX} --version | egrep "^(2\.9|egcs)" ; echo
SUBDIR+= libbfd libmalloc
.if empty(HAVE_GCC29) || make (obj) || make(cleandir) || make(clean)
SUBDIR+= libg2c libgcc libobjc libstdc++
.endif
.include <bsd.subdir.mk>