freebsd-dev/lib/Makefile

52 lines
1.0 KiB
Makefile
Raw Normal View History

1994-05-27 05:00:24 +00:00
# @(#)Makefile 8.1 (Berkeley) 6/4/93
.if ${MACHINE} == "tahoe"
SUBDIR=csu/tahoe.pcc
1994-05-27 05:00:24 +00:00
.elif ${MACHINE} == "vax"
SUBDIR=csu/vax.pcc
.else
SUBDIR=csu/${MACHINE}
1994-05-27 05:00:24 +00:00
.endif
# XXX MISSING: libplot
SUBDIR+=libc libcompat libcom_err libcurses libdisk libedit \
1997-02-07 03:58:36 +00:00
libf2c libftpio libgnumalloc libipx libkvm libmd libmytinfo \
libncurses libopie libpcap libresolv librpcsvc \
libscsi libskey libss libtcl libtermcap libutil libxpg4 liby libz
.if defined(WANT_LIBC_R)
SUBDIR+= libc_r
.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 !exists(${.CURDIR}/../eBones) || defined(NOSECURE) || !defined(MAKE_EBONES)
SUBDIR+= libtelnet
.else
.if defined(RELEASEDIR)
# releases do need both libraries
SUBDIR+= libtelnet
.endif
SUBDIR+= ../eBones/lib/libtelnet
.endif
.if defined(WANT_CSRG_LIBM)
SUBDIR+= libm
.else
SUBDIR+= msun
.endif
SUBDIR+= compat
1994-05-27 05:00:24 +00:00
.include <bsd.subdir.mk>