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

22 lines
460 B
Makefile
Raw Normal View History

# $Id: Makefile,v 1.22 1997/06/29 21:36:33 bde Exp $
1993-11-03 23:41:59 +00:00
#
1993-06-29 09:58:20 +00:00
PROG= ld
BINDIR= /usr/libexec/aout
SRCS= ld.c symbol.c lib.c shlib.c warnings.c support.c rrs.c xbits.c md.c \
cplus-dem.c
CFLAGS+= -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE) \
-I$(GCCDIR) -DIN_GCC -DDEMANGLE_CPLUSPLUS
NOSHARED?= yes
1993-11-03 23:41:59 +00:00
GCCDIR= ${.CURDIR}/../../../contrib/gcc
SUBDIR= ldconfig ldd
.if !defined(NOPIC)
SUBDIR+= rtld
.endif
.PATH: $(.CURDIR)/$(MACHINE) $(GCCDIR)
1993-06-29 09:58:20 +00:00
.include <bsd.prog.mk>