f547de18d3
Reviewed by: rgrimes
29 lines
561 B
Makefile
29 lines
561 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
|
|
|
|
.if ${MACHINE} == "tahoe"
|
|
SUBDIR=csu/tahoe.pcc
|
|
.elif ${MACHINE} == "vax"
|
|
SUBDIR=csu/vax.pcc
|
|
.else
|
|
SUBDIR=csu/${MACHINE}
|
|
.endif
|
|
|
|
# XXX MISSING: libmp libplot
|
|
SUBDIR+= libc libcompat libcom_err libcrypt libcurses libedit \
|
|
libf2c libforms \
|
|
libkvm libmd libmytinfo libncurses libpcap libresolv librpcsvc \
|
|
libscsi libskey libss libtermcap libutil liby
|
|
|
|
.if !exists(../secure) || defined(NOSECURE)
|
|
SUBDIR+= libtelnet
|
|
.endif
|
|
|
|
.if defined(WANT_CSRG_LIBM)
|
|
SUBDIR+= libm
|
|
.else
|
|
SUBDIR+= msun
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|