1994-05-27 07:00:24 +02:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
|
|
|
|
|
|
|
|
|
|
|
.if ${MACHINE} == "tahoe"
|
1994-08-25 15:39:18 +02:00
|
|
|
SUBDIR=csu/tahoe.pcc
|
1994-05-27 07:00:24 +02:00
|
|
|
.elif ${MACHINE} == "vax"
|
1994-08-25 15:39:18 +02:00
|
|
|
SUBDIR=csu/vax.pcc
|
1994-05-28 11:24:46 +02:00
|
|
|
.else
|
1994-08-25 15:39:18 +02:00
|
|
|
SUBDIR=csu/${MACHINE}
|
1994-05-27 07:00:24 +02:00
|
|
|
.endif
|
|
|
|
|
1994-08-25 15:39:18 +02:00
|
|
|
# XXX MISSING: libmp libplot
|
1995-09-29 20:56:05 +01:00
|
|
|
SUBDIR+= libc libcompat libcom_err libcurses libedit \
|
1995-08-04 09:27:24 +02:00
|
|
|
libf2c libforms \
|
1995-02-08 21:46:53 +01:00
|
|
|
libkvm libmd libmytinfo libncurses libpcap libresolv librpcsvc \
|
1995-10-23 02:50:11 +01:00
|
|
|
libscsi libskey libss libtermcap libutil libxpg4 liby
|
1995-08-06 13:14:09 +02:00
|
|
|
|
1995-09-29 20:56:05 +01:00
|
|
|
.if !exists(../secure) || defined(NOSECURE) || defined(NOCRYPT)
|
|
|
|
SUBDIR+= libcrypt
|
|
|
|
.else
|
|
|
|
SUBDIR+= ../secure/lib/libcrypt
|
|
|
|
.endif
|
|
|
|
|
1995-08-06 13:14:09 +02:00
|
|
|
.if !exists(../secure) || defined(NOSECURE)
|
|
|
|
SUBDIR+= libtelnet
|
1995-09-29 20:45:25 +01:00
|
|
|
.else
|
|
|
|
SUBDIR+= ../secure/lib/libtelnet
|
1995-08-06 13:14:09 +02:00
|
|
|
.endif
|
1994-08-25 15:39:18 +02:00
|
|
|
|
1995-03-21 03:52:05 +01:00
|
|
|
.if defined(WANT_CSRG_LIBM)
|
1994-08-19 12:24:56 +02:00
|
|
|
SUBDIR+= libm
|
|
|
|
.else
|
|
|
|
SUBDIR+= msun
|
|
|
|
.endif
|
|
|
|
|
1994-05-27 07:00:24 +02:00
|
|
|
.include <bsd.subdir.mk>
|