1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00
freebsd/lib/Makefile
John Birrell 8d6fec39d2 Build lib/csu/${MACHINE} only if it exists so that when porting FreeBSD
to another architecture (in this case the Alpha) we can continue to use
the host csu objects (from NetBSD). This should be a non-function change
to FreeBSD/i386.
1998-01-09 05:37:41 +00:00

50 lines
1.2 KiB
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/4/93
.if ${MACHINE} == "tahoe"
SUBDIR=csu/tahoe.pcc
.elif ${MACHINE} == "vax"
SUBDIR=csu/vax.pcc
.elif exists(csu/${MACHINE})
SUBDIR=csu/${MACHINE}
.endif
# XXX MISSING: libplot
SUBDIR+=libalias libc libcalendar libcompat libcom_err libcurses libdisk \
libedit libf2c libftpio libgnumalloc libipx libkvm libmd libmytinfo \
libncurses libopie libpcap libresolv librpcsvc \
libscsi libskey libss libtermcap libutil libvgl libxpg4 liby libz
.if !defined(NOLIBC_R)
SUBDIR+= libc_r
.endif
.if !defined(NOTCL) && exists (${.CURDIR}/../contrib/tcl) && \
exists(${.CURDIR}/../usr.bin/tclsh) && exists (${.CURDIR}/libtcl)
SUBDIR+=libtcl
.endif
.if !exists(${.CURDIR}/../secure) || defined(NOSECURE) || defined(NOCRYPT)
SUBDIR+= libcrypt
.else
SUBDIR+= ../secure/lib/libcrypt
.if defined(RELEASEDIR)
# releases do need both libraries
SUBDIR+= libcrypt
.endif
.endif
.if defined(RELEASEDIR) || !exists(${.CURDIR}/../kerberosIV) || defined(NOCRYPT) || !defined(MAKE_KERBEROS4)
# releases do need both libraries
SUBDIR+= libtelnet
.endif
.if defined(WANT_CSRG_LIBM)
SUBDIR+= libm
.else
SUBDIR+= msun
.endif
SUBDIR+= compat
.include <bsd.subdir.mk>