1# @(#)Makefile 8.1 (Berkeley) 6/4/93 2 3 4.if ${MACHINE} == "tahoe" 5SUBDIR=csu/tahoe.pcc 6.elif ${MACHINE} == "vax" 7SUBDIR=csu/vax.pcc 8.else 9SUBDIR=csu/${MACHINE} 10.endif 11 12# XXX MISSING: libplot 13SUBDIR+= libc libcompat libcom_err libcurses libedit \ 14 libf2c libfakegnumalloc libforms \ 15 libkvm libmd libmytinfo libncurses libpcap libresolv librpcsvc \ 16 libscsi libskey libss libtermcap libutil libxpg4 liby libipx 17 18.if !exists(../secure) || defined(NOSECURE) || defined(NOCRYPT) 19SUBDIR+= libcrypt 20.else 21SUBDIR+= ../secure/lib/libcrypt 22.if defined(RELEASEDIR) 23# releases do need both libraries 24SUBDIR+= libcrypt 25.endif 26.endif 27 28.if !exists(../secure) || defined(NOSECURE) 29SUBDIR+= libtelnet 30.else 31SUBDIR+= ../secure/lib/libtelnet 32.endif 33 34.if defined(WANT_CSRG_LIBM) 35SUBDIR+= libm 36.else 37SUBDIR+= msun 38.endif 39 40.include <bsd.subdir.mk> 41