diff options
author | obrien <obrien@FreeBSD.org> | 2001-02-10 07:07:09 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-02-10 07:07:09 +0000 |
commit | 7bdc444072634bfcb88a522bca59d95b60db344a (patch) | |
tree | 00877a466cd7dd053950b4d4d2ce52e25885e025 | |
parent | a6c943d17d2359cd935d86c6799b43516e7d58e5 (diff) | |
download | FreeBSD-src-7bdc444072634bfcb88a522bca59d95b60db344a.zip FreeBSD-src-7bdc444072634bfcb88a522bca59d95b60db344a.tar.gz |
There are now compat libs for the Alpha too.
-rw-r--r-- | lib/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index e84d25d2..ae9f0fb 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -31,8 +31,10 @@ SUBDIR= ${_csu} libcom_err libcrypt msun libmd \ .if exists(${.CURDIR}/csu/${MACHINE_ARCH}-${OBJFORMAT}) _csu=csu/${MACHINE_ARCH}-${OBJFORMAT} -.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}) +.elif exists(${.CURDIR}/csu/${MACHINE_ARCH}/Makefile) _csu=csu/${MACHINE_ARCH} +.else +_csu=csu .endif .if !defined(NOLIBC_R) @@ -51,6 +53,7 @@ _libvgl= libvgl .if ${MACHINE_ARCH} == "alpha" _libio= libio +_compat= compat .endif .if defined(RELEASEDIR) || \ |