xref: /freebsd/lib/Makefile (revision e6af2dc882fd85203499cd6fb262b072de2afa42)
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
12f06e7c2eSPaul Richards# XXX MISSING:		libmp libplot
13e6af2dc8SAndrey A. ChernovSUBDIR+=        libc libcompat libcom_err libcurses libedit \
14083cb36aSJordan K. Hubbard		libf2c libforms \
159ee337daSBruce Evans	libkvm libmd libmytinfo libncurses libpcap libresolv librpcsvc \
16f547de18SMark Murray	libscsi libskey libss libtermcap libutil liby
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
22e6af2dc8SAndrey A. Chernov.endif
23e6af2dc8SAndrey A. Chernov
24f547de18SMark Murray.if !exists(../secure) || defined(NOSECURE)
25f547de18SMark MurraySUBDIR+= libtelnet
26153193f3SAndrey A. Chernov.else
27153193f3SAndrey A. ChernovSUBDIR+= ../secure/lib/libtelnet
28f547de18SMark Murray.endif
29f06e7c2eSPaul Richards
3072b799a9SPoul-Henning Kamp.if defined(WANT_CSRG_LIBM)
31b6059979SJordan K. HubbardSUBDIR+= libm
32b6059979SJordan K. Hubbard.else
33b6059979SJordan K. HubbardSUBDIR+= msun
34b6059979SJordan K. Hubbard.endif
35b6059979SJordan K. Hubbard
3658f0484fSRodney W. Grimes.include <bsd.subdir.mk>
37