mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
86392d361e
GCC 2.7.2.3 as that was the version of GCC in active use before the switch to ELF. The GCC 2.9[67] versions of these files carry more baggage and I'm not sure the are appropriate for this linker.
18 lines
387 B
Makefile
18 lines
387 B
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
RTLD= ${.CURDIR}/../../../libexec/rtld-aout
|
|
|
|
PROG= ld
|
|
BINDIR= /usr/libexec/aout
|
|
MAN1aout=ld.1aout
|
|
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${RTLD} -I${RTLD}/${MACHINE_ARCH} \
|
|
-DIN_GCC -DDEMANGLE_CPLUSPLUS -DFREEBSD_AOUT
|
|
NOSHARED?= yes
|
|
|
|
.PATH: ${RTLD} ${RTLD}/${MACHINE_ARCH}
|
|
|
|
.include <bsd.prog.mk>
|