diff options
author | paul <paul@FreeBSD.org> | 1994-08-25 13:39:18 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1994-08-25 13:39:18 +0000 |
commit | 81ba923d34406ee2861f66554d88eba5049356a3 (patch) | |
tree | d56978fbe4fe30bedfb67dd741e80ce3f7e02bfc /lib/Makefile | |
parent | 9fd45e48756b921b9cdd5f6aff02aeca40f61a1f (diff) | |
download | FreeBSD-src-81ba923d34406ee2861f66554d88eba5049356a3.zip FreeBSD-src-81ba923d34406ee2861f66554d88eba5049356a3.tar.gz |
Moved the csu directory to be first on the SUBDIR list. This is
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:
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/Makefile b/lib/Makefile index b5f3d50..73e32f3 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,17 +1,18 @@ # @(#)Makefile 8.1 (Berkeley) 6/4/93 -# XXX MISSING: libmp libplot -SUBDIR= libc libcompat libcrypt libcurses libedit libkvm libmd \ - libresolv librpcsvc libskey libtelnet libterm libutil liby .if ${MACHINE} == "tahoe" -SUBDIR+=csu/tahoe.pcc +SUBDIR=csu/tahoe.pcc .elif ${MACHINE} == "vax" -SUBDIR+=csu/vax.pcc +SUBDIR=csu/vax.pcc .else -SUBDIR+=csu/${MACHINE} +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 |