freebsd-dev/lib/Makefile

31 lines
600 B
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: libmp libplot
1995-01-21 23:01:33 +00:00
SUBDIR+= libc libcompat libcom_err libcrypt libcurses libedit \
1995-08-04 07:27:24 +00:00
libf2c libforms \
libkvm libmd libmytinfo libncurses libpcap libresolv librpcsvc \
libscsi libskey libss libtermcap libutil liby
.if !exists(../secure) || defined(NOSECURE)
SUBDIR+= libtelnet
.else
SUBDIR+= ../secure/lib/libtelnet
.endif
.if defined(WANT_CSRG_LIBM)
SUBDIR+= libm
.else
SUBDIR+= msun
.endif
1994-05-27 05:00:24 +00:00
.include <bsd.subdir.mk>