.if !defined(NOPIC)
SUBDIR+= rtld
.endif

so linker can be built without building ld.so
This commit is contained in:
Paul Richards 1993-11-09 21:23:07 +00:00
parent f1a0d2dfc6
commit ff691de6a9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=746

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.4 1993/11/09 04:18:50 paul Exp $
# $Id: Makefile,v 1.5 1993/11/09 20:39:26 paul Exp $
#
PROG= ld
@ -8,7 +8,10 @@ CFLAGS += -static -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE)
LDADD+= -lgnumalloc
DPADD+= /usr/lib/libgnumalloc.a
SUBDIR= ldconfig ldd rtld
SUBDIR= ldconfig ldd
.if !defined(NOPIC)
SUBDIR+= rtld
.endif
.PATH: $(.CURDIR)/$(MACHINE)