freebsd-dev/gnu/usr.bin/ld/Makefile

20 lines
396 B
Makefile
Raw Normal View History

# $Id: Makefile,v 1.9 1993/12/01 14:45:35 ache Exp $
1993-11-03 23:41:59 +00:00
#
1993-06-29 09:58:20 +00:00
PROG= ld
1993-11-03 23:41:59 +00:00
SRCS= ld.c symbol.c lib.c shlib.c warnings.c etc.c rrs.c xbits.c md.c
CFLAGS += -static -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE)
1993-11-03 23:41:59 +00:00
LDADD+= -lgnumalloc
DPADD+= /usr/lib/libgnumalloc.a
LDFLAGS+= -Xlinker -Bstatic
1993-11-03 23:41:59 +00:00
SUBDIR= ldconfig ldd
.if !defined(NOPIC)
SUBDIR+= rtld
.endif
1993-11-03 23:41:59 +00:00
.PATH: $(.CURDIR)/$(MACHINE)
1993-06-29 09:58:20 +00:00
.include <bsd.prog.mk>