Makefile revision 114050
1# $FreeBSD: head/gnu/usr.bin/binutils/libbfd/Makefile 114050 2003-04-26 03:28:21Z obrien $
2
3.include "../Makefile.inc0"
4
5.PATH: ${SRCDIR}/bfd ${SRCDIR}/opcodes
6
7LIB=	bfd
8SRCS+=	archive.c archive64.c archures.c bfd.c binary.c cache.c \
9	coffgen.c corefile.c elf.c elf-eh-frame.c elf-strtab.c format.c \
10	hash.c ihex.c init.c libbfd.c linker.c merge.c opncls.c reloc.c \
11	section.c srec.c stab-syms.c stabs.c syms.c targets.c tekhex.c \
12	targmatch.h dwarf1.c dwarf2.c config.h
13.if (${TARGET_ARCH} == "alpha" || ${TARGET_ARCH} == "ia64" || ${TARGET_ARCH} == "sparc64")
14WARNS=	2
15.endif
16CFLAGS+= -I${SRCDIR}/bfd
17CFLAGS+= -DBFD_VERSION=\"${VERSION_DATE}\" -DBFD_VERSION_DATE=${VERSION_DATE}
18CFLAGS+= -DBFD_VERSION_STRING=\"${VERSION}\"
19INTERNALLIB=	true
20CLEANFILES+=	config.h targmatch.h
21
22SELARCH=
23.if ${TARGET_ARCH} == "amd64"
24SELARCH= &bfd_i386_arch
25.elif ${TARGET_ARCH} == "sparc64"
26SELARCH= &bfd_sparc_arch
27.else
28.for _a in ${ARCHS}
29.if ${SELARCH} == ""
30SELARCH+= &bfd_${_a}_arch
31.else
32SELARCH+= ,&bfd_${_a}_arch
33.endif
34.endfor
35.endif
36CFLAGS+= -DSELECT_ARCHITECTURES="${SELARCH}"
37
38SELVEC=
39.for _v in ${VECS}
40CFLAGS+= -DHAVE_${_v}
41.if ${SELVEC} == ""
42SELVEC+= &${_v}
43.else
44SELVEC+= ,&${_v}
45.endif
46.endfor
47CFLAGS+= -DSELECT_VECS="${SELVEC}"
48
49targmatch.h: targmatch.sed config.bfd
50	sed -f ${.ALLSRC:M*.sed} ${.ALLSRC:M*.bfd} > ${.TARGET}
51	
52config.h: config.h.fbsd
53.if ${TARGET_ARCH} == "i386"
54	sed -e 's,!!TRAD_HEADER!!,"hosts/i386bsd.h",g' ${.ALLSRC} > ${.TARGET}
55.else
56	sed -e 's,!!TRAD_HEADER!!,,g' ${.ALLSRC} > ${.TARGET}
57.endif
58
59.include <bsd.lib.mk>
60