NetBSD/gnu/usr.bin/gas.new/Makefile

36 lines
1.1 KiB
Makefile
Raw Normal View History

1999-03-05 10:23:51 +03:00
# $NetBSD: Makefile,v 1.9 1999/03/05 07:23:51 mycroft Exp $
#
1999-01-11 14:49:20 +03:00
.include <bsd.own.mk>
# Override to make a cross assembler.
.if ${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb"
TARGET_ARCH ?= mips
.else
TARGET_ARCH ?= ${MACHINE_ARCH}
.endif
PROG= as
MAN= as.1
SRCS= app.c as.c atof-generic.c bignum-copy.c cond.c depend.c \
ecoff.c ehopt.c expr.c flonum-konst.c flonum-copy.c \
flonum-mult.c frags.c hash.c input-file.c input-scrub.c \
literal.c messages.c output-file.c read.c subsegs.c symbols.c \
write.c listing.c stabs.c sb.c macro.c
SRCS+= ${TARG_CPU_C} ${OBJ_FORMAT_C} ${ATOF_TARG_C}
CPPFLAGS+= -I${.CURDIR}/arch/${TARGET_ARCH} \
-I${DIST}/gas -I${DIST}/gas/config -I${BFDOBJ} \
-I${DIST}/bfd -I${DIST}/include -I${DIST} \
-D_GNU_SOURCE
1999-03-05 10:23:51 +03:00
LDADD+= -L${BFDOBJ} -lbfd -lgnumalloc
DPADD+= ${BFDOBJ}/libbfd_pic.a ${LIBGNUMALLOC}
DIST= ${.CURDIR}/../../dist
BFDOBJ!= cd ${.CURDIR}/../../lib/libbfd && ${MAKE} print-objdir
.PATH: ${DIST}/gas/config ${DIST}/gas ${DIST}/gas/doc
.include "${.CURDIR}/arch/${TARGET_ARCH}/Makefile.inc"
.include <bsd.prog.mk>