Module Name: src Committed By: matt Date: Sat Apr 27 08:00:41 UTC 2013
Modified Files: src/lib/libc: Makefile Log Message: Just build the legacy stuff for earm (for now). To generate a diff of this commit: cvs rdiff -u -r1.155 -r1.156 src/lib/libc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/Makefile diff -u src/lib/libc/Makefile:1.155 src/lib/libc/Makefile:1.156 --- src/lib/libc/Makefile:1.155 Thu Apr 25 15:39:26 2013 +++ src/lib/libc/Makefile Sat Apr 27 08:00:40 2013 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.155 2013/04/25 15:39:26 matt Exp $ +# $NetBSD: Makefile,v 1.156 2013/04/27 08:00:40 matt Exp $ # @(#)Makefile 8.2 (Berkeley) 2/3/94 # # All library objects contain sccsid strings by default; they may be @@ -44,7 +44,6 @@ assym.h: ${ARCHDIR}/genassym.cf # The following controls how to build compatibility code for old NetBSD # binaries. If BUILD_LEGACY is yes, then we build a separate library; otherwise # we include the code in libc. -.if empty(MACHINE_ARCH:Mearm*) BUILD_LEGACY?= no .if "${BUILD_LEGACY}" == "yes" SUBDIR=compat @@ -55,14 +54,6 @@ COMPATDIR=${.CURDIR}/compat # Marker for compat code that can't be easily isolated CPPFLAGS+= -D__BUILD_LEGACY .endif -.else # XXX temp -COMPATDIR=${.CURDIR}/compat -.PATH: ${COMPATDIR}/sys -SRCS+= compat___lwp_park50.c -MAN+= getdirentries.3 -CPPFLAGS+= -D__BUILD_LEGACY -CPPFLAGS+= -I${NETBSDSRCDIR}/sys -.endif .include "${.CURDIR}/../../common/lib/libc/Makefile.inc" .include "${.CURDIR}/atomic/Makefile.inc"