NetBSD/gnu/usr.bin/ld/Makefile

19 lines
369 B
Makefile
Raw Normal View History

1993-12-08 14:47:17 +03:00
# $Id: Makefile,v 1.11 1993/12/08 11:47:17 mycroft Exp $
1993-10-17 00:52:27 +03:00
#
1993-03-21 12:45:37 +03:00
PROG= ld
1993-10-17 00:52:27 +03:00
SRCS= ld.c symbol.c lib.c shlib.c warnings.c etc.c rrs.c xbits.c md.c
1993-12-05 03:49:23 +03:00
CFLAGS += -g -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE_ARCH)
1993-10-17 00:52:27 +03:00
1993-10-26 09:56:08 +03:00
LDADD+= -lgnumalloc
DPADD+= /usr/lib/libgnumalloc.a
SUBDIR= ldconfig ldd
.if !defined(NOPIC)
SUBDIR+= rtld
.endif
1993-11-03 16:01:36 +03:00
1993-12-08 14:47:17 +03:00
.PATH: $(.CURDIR)/$(MACHINE_ARCH)
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>