mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 08:00:48 +01:00
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:
This commit is contained in:
parent
0609e634fe
commit
f06e7c2ed8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2275
13
lib/Makefile
13
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
|
||||
|
Loading…
Reference in New Issue
Block a user