18 lines
367 B
Makefile
18 lines
367 B
Makefile
# $NetBSD: Makefile,v 1.13 1995/04/23 07:58:46 cgd Exp $
|
|
|
|
PROG= ld
|
|
SRCS= ld.c symbol.c lib.c shlib.c warnings.c etc.c rrs.c xbits.c md.c
|
|
CFLAGS += -g -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE_ARCH)
|
|
|
|
LDADD+= -lgnumalloc
|
|
DPADD+= /usr/lib/libgnumalloc.a
|
|
|
|
SUBDIR= ldconfig ldd
|
|
|
|
.PATH: $(.CURDIR)/$(MACHINE_ARCH)
|
|
|
|
.include <bsd.prog.mk>
|
|
.if !defined(NOPIC)
|
|
SUBDIR+= rtld
|
|
.endif
|