summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2014-06-13 01:17:45 +0000
committermrg <mrg@NetBSD.org>2014-06-13 01:17:45 +0000
commit2d8e17bca247ad9fe5717af862c243c90f78402d (patch)
tree21d19e4033546fcf068c812839d3b9d8c48e67e3 /Makefile
parentb63c469e06e41f249c21346d78dc73b162d7f1cf (diff)
remove the build support for GCC 4.1, and any hacks i found for it.
there could still be more -- i only looked for lines matching both "HAVE_GCC" and "4" as words (grep -w.)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 1 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 79413cb72c3..d3a14e251a9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.305 2014/02/26 09:54:32 mrg Exp $
+# $NetBSD: Makefile,v 1.306 2014/06/13 01:17:45 mrg Exp $
#
# This is the top-level makefile for building NetBSD. For an outline of
@@ -199,16 +199,9 @@ postinstall-fix-obsolete: .NOTMAIN .PHONY
# Targets (in order!) called by "make build".
#
.if defined(HAVE_GCC)
-.if ${HAVE_GCC} == "4"
-LIBGCC_EXT=4
-BUILD_CC_LIB_BASEDIR= gnu/lib
-BUILD_CC_LIB_BASETARGET= gnu-lib
-.else
-LIBGCC_EXT=
BUILD_CC_LIB_BASEDIR= external/gpl3/${EXTERNAL_GCC_SUBDIR}/lib
BUILD_CC_LIB_BASETARGET= external-gpl3-gcc-lib
.endif
-.endif
BUILDTARGETS+= check-tools
.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)