f06e7c2ed8
because libmd builds a test program before installation and if you've used CLOBBER there's no crt.0 to link with. This ensures that in a make world the csu objects will get installed before reaching the libmd directory. Reviewed by: Submitted by:
23 lines
415 B
Makefile
23 lines
415 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 libcrypt libcurses libedit libkvm libmd \
|
|
libresolv librpcsvc libskey libtelnet libterm libutil liby
|
|
|
|
.if !defined(WANT_MSUN)
|
|
SUBDIR+= libm
|
|
.else
|
|
SUBDIR+= msun
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|