Deleted Added
full compact
Makefile (185922) Makefile (209867)
1# $FreeBSD: head/gnu/usr.bin/binutils/as/Makefile 185922 2008-12-11 08:15:14Z imp $
1# $FreeBSD: head/gnu/usr.bin/binutils/as/Makefile 209867 2010-07-10 02:29:22Z nwhitehorn $
2
3
4# BINDIR
5.include "${.CURDIR}/../../Makefile.inc"
6WARNS?= 2
7NO_WERROR=
8.include "${.CURDIR}/../Makefile.inc0"
9

--- 11 unchanged lines hidden (view full) ---

21#SRCS+= itbl-ops.c
22
23.if ${TARGET_ARCH} == "mips"
24SRCS+= itbl-ops.c itbl-parse.y itbl-lex.l
25.endif
26
27.if ${TARGET_ARCH} == "amd64"
28SRCS+= tc-i386.c
2
3
4# BINDIR
5.include "${.CURDIR}/../../Makefile.inc"
6WARNS?= 2
7NO_WERROR=
8.include "${.CURDIR}/../Makefile.inc0"
9

--- 11 unchanged lines hidden (view full) ---

21#SRCS+= itbl-ops.c
22
23.if ${TARGET_ARCH} == "mips"
24SRCS+= itbl-ops.c itbl-parse.y itbl-lex.l
25.endif
26
27.if ${TARGET_ARCH} == "amd64"
28SRCS+= tc-i386.c
29.elif ${TARGET_ARCH} == "powerpc"
29.elif ${TARGET_ARCH} == "powerpc" || ${TARGET_ARCH} == "powerpc64"
30SRCS+= tc-ppc.c
31.elif ${TARGET_ARCH} == "sparc64"
32# change back to tc-sparc.c when new binutils is imported
33SRCS+= tc-sparc-fixed.c
34.else
35SRCS+= tc-${TARGET_ARCH}.c
36.endif
37

--- 24 unchanged lines hidden ---
30SRCS+= tc-ppc.c
31.elif ${TARGET_ARCH} == "sparc64"
32# change back to tc-sparc.c when new binutils is imported
33SRCS+= tc-sparc-fixed.c
34.else
35SRCS+= tc-${TARGET_ARCH}.c
36.endif
37

--- 24 unchanged lines hidden ---