Deleted Added
full compact
Makefile (113369) Makefile (113398)
1# $FreeBSD: head/gnu/usr.bin/binutils/ld/Makefile 113369 2003-04-11 18:02:10Z ru $
1# $FreeBSD: head/gnu/usr.bin/binutils/ld/Makefile 113398 2003-04-12 14:44:49Z ru $
2
3.include "../Makefile.inc0"
4
5.PATH: ${SRCDIR}/ld
6
7PROG= ld
8SCRIPTDIR= /usr/libdata/ldscripts
9SRCS+= ldcref.c ldctor.c ldemul.c ldemul-list.h ldexp.c ldfile.c \
10 ldgram.y ldlang.c ldlex.l ldmain.c ldmisc.c \
11 ldver.c ldwrite.c lexsup.c mri.c
12
13WARNS= 1
14CFLAGS+= -DSCRIPTDIR=\"${TOOLS_PREFIX}/usr/libdata\"
15CFLAGS+= -DBFD_VERSION_STRING=\"${VERSION}\"
16CFLAGS+= -I${SRCDIR}/ld -I${SRCDIR}/bfd
17NOSHARED?= yes
2
3.include "../Makefile.inc0"
4
5.PATH: ${SRCDIR}/ld
6
7PROG= ld
8SCRIPTDIR= /usr/libdata/ldscripts
9SRCS+= ldcref.c ldctor.c ldemul.c ldemul-list.h ldexp.c ldfile.c \
10 ldgram.y ldlang.c ldlex.l ldmain.c ldmisc.c \
11 ldver.c ldwrite.c lexsup.c mri.c
12
13WARNS= 1
14CFLAGS+= -DSCRIPTDIR=\"${TOOLS_PREFIX}/usr/libdata\"
15CFLAGS+= -DBFD_VERSION_STRING=\"${VERSION}\"
16CFLAGS+= -I${SRCDIR}/ld -I${SRCDIR}/bfd
17NOSHARED?= yes
18DPADD:= ${RELTOP}/libbfd/libbfd.a \
19 ${RELTOP}/libiberty/libiberty.a \
20 ${DPADD}
18DPADD= ${RELTOP}/libbfd/libbfd.a
19DPADD+= ${RELTOP}/libiberty/libiberty.a
21LDADD= ${DPADD}
22CLEANDIRS+= ldscripts
23CLEANFILES+= ldemul-list.h stringify.sed
24
25# If set, BINUTILSDISTDIR is the path to a directory containing the full GNU
26# binutils release. FreeBSD only distributes the bits that are required to
27# build native architectures. BINUTILSDISTDIR is needed to build cross tools.
28.if defined(BINUTILSDISTDIR) && exists(${BINUTILSDISTDIR})

--- 23 unchanged lines hidden ---
20LDADD= ${DPADD}
21CLEANDIRS+= ldscripts
22CLEANFILES+= ldemul-list.h stringify.sed
23
24# If set, BINUTILSDISTDIR is the path to a directory containing the full GNU
25# binutils release. FreeBSD only distributes the bits that are required to
26# build native architectures. BINUTILSDISTDIR is needed to build cross tools.
27.if defined(BINUTILSDISTDIR) && exists(${BINUTILSDISTDIR})

--- 23 unchanged lines hidden ---