freebsd-dev/gnu/usr.bin/binutils/libbinutils/Makefile
1999-08-27 23:37:10 +00:00

28 lines
599 B
Makefile

#
# $FreeBSD$
#
.include "../Makefile.inc0"
.PATH: ${SRCDIR}/binutils
LIB= binutils
SRCS+= arlex.l arparse.y arsup.c bucomm.c debug.c filemode.c \
ieee.c rdcoff.c rddbg.c stabs.c wrstabs.c version.c
.if ${MACHINE_ARCH} == "mipseb"
CFLAGS+= -DTARGET=\"elf32-bigmips\"
.elif ${MACHINE_ARCH} == "mipsel"
CFLAGS+= -DTARGET=\"elf32-littlemips\"
.else
CFLAGS+= -DTARGET=\"${MACHINE_ARCH}-unknown-freebsdelf\"
.endif
CFLAGS+= -DVERSION=\"${VERSION}\"
CFLAGS+= -I${SRCDIR}/binutils
CFLAGS+= -I${SRCDIR}/bfd
NOPROFILE= true
NOPIC= true
INTERNALLIB= true
INTERNALSTATICLIB=true
.include <bsd.lib.mk>