Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/Makefile,v rcsdiff: /ftp/cvs/cvsroot/src/Makefile,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.265 retrieving revision 1.266 diff -u -p -r1.265 -r1.266 --- src/Makefile 2008/12/30 22:18:11 1.265 +++ src/Makefile 2009/01/19 07:19:09 1.266 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.265 2008/12/30 22:18:11 pooka Exp $ +# $NetBSD: Makefile,v 1.266 2009/01/19 07:19:09 jmmv Exp $ # # This is the top-level makefile for building NetBSD. For an outline of @@ -96,6 +96,8 @@ # do-sys-rump-net-lib: builds and installs prerequisites from sys/rump/net/lib # do-sys-modules: builds and installs kernel modules (used by rump binaries) # do-ld.so: builds and installs prerequisites from libexec/ld.*_so. +# do-compat-external-lib: builds and installs prerequisites from +# compat/external/lib if ${MKCOMPAT} != "no". # do-compat-lib-csu: builds and installs prerequisites from compat/lib/csu # if ${MKCOMPAT} != "no". # do-compat-libgcc: builds and installs prerequisites from @@ -243,6 +245,7 @@ BUILDTARGETS+= do-sys-modules BUILDTARGETS+= do-compat-lib-csu BUILDTARGETS+= do-compat-libgcc BUILDTARGETS+= do-compat-lib-libc +BUILDTARGETS+= do-compat-external-lib .endif BUILDTARGETS+= do-ld.so BUILDTARGETS+= do-build @@ -403,6 +406,7 @@ BUILD_CC_LIB+= external/bsd/pcc/libpcc .if ${MKCOMPAT} != "no" BUILD_COMPAT_LIBS= compat/lib/csu ${BUILD_CC_LIB:S/^/compat\//} compat/lib/libc +BUILD_COMPAT_LIBS+= compat/external/lib .else BUILD_COMPAT_LIBS= .endif