xref: /freebsd/lib/Makefile (revision cbbe7584d8b24c58738e0ca44d5cf08e74cae8e5)
158f0484fSRodney W. Grimes#	@(#)Makefile	8.1 (Berkeley) 6/4/93
258f0484fSRodney W. Grimes
358f0484fSRodney W. Grimes
458f0484fSRodney W. Grimes.if	${MACHINE} == "tahoe"
5f06e7c2eSPaul RichardsSUBDIR=csu/tahoe.pcc
658f0484fSRodney W. Grimes.elif	${MACHINE} == "vax"
7f06e7c2eSPaul RichardsSUBDIR=csu/vax.pcc
81ece12e5SRodney W. Grimes.else
9f06e7c2eSPaul RichardsSUBDIR=csu/${MACHINE}
1058f0484fSRodney W. Grimes.endif
1158f0484fSRodney W. Grimes
123fcee20fSMark Murray# XXX MISSING:		libplot
13e6af2dc8SAndrey A. ChernovSUBDIR+=        libc libcompat libcom_err libcurses libedit \
14cbbe7584SPoul-Henning Kamp		libf2c libfakegnumalloc libforms \
159ee337daSBruce Evans	libkvm libmd libmytinfo libncurses libpcap libresolv librpcsvc \
16cc6a66f2SJulian Elischer	libscsi libskey libss libtermcap libutil libxpg4 liby libipx
17f547de18SMark Murray
18e6af2dc8SAndrey A. Chernov.if !exists(../secure) || defined(NOSECURE) || defined(NOCRYPT)
19e6af2dc8SAndrey A. ChernovSUBDIR+= libcrypt
20e6af2dc8SAndrey A. Chernov.else
21e6af2dc8SAndrey A. ChernovSUBDIR+= ../secure/lib/libcrypt
227c2f56ccSJoerg Wunsch.if defined(RELEASEDIR)
237c2f56ccSJoerg Wunsch# releases do need both libraries
247c2f56ccSJoerg WunschSUBDIR+= libcrypt
257c2f56ccSJoerg Wunsch.endif
26e6af2dc8SAndrey A. Chernov.endif
27e6af2dc8SAndrey A. Chernov
28f547de18SMark Murray.if !exists(../secure) || defined(NOSECURE)
29f547de18SMark MurraySUBDIR+= libtelnet
30153193f3SAndrey A. Chernov.else
31153193f3SAndrey A. ChernovSUBDIR+= ../secure/lib/libtelnet
32f547de18SMark Murray.endif
33f06e7c2eSPaul Richards
3472b799a9SPoul-Henning Kamp.if defined(WANT_CSRG_LIBM)
35b6059979SJordan K. HubbardSUBDIR+= libm
36b6059979SJordan K. Hubbard.else
37b6059979SJordan K. HubbardSUBDIR+= msun
38b6059979SJordan K. Hubbard.endif
39b6059979SJordan K. Hubbard
4058f0484fSRodney W. Grimes.include <bsd.subdir.mk>
41