Build gasp (GAS Preprocessor). This is needed for building Glide.

This commit is contained in:
Doug Rabson 1999-12-07 17:01:27 +00:00
parent 7420fbaac2
commit 99b8134654
2 changed files with 21 additions and 1 deletions

View File

@ -3,7 +3,7 @@
#
SUBDIR= libiberty libbfd libopcodes libbinutils \
addr2line ar as ld nm objcopy objdump ranlib \
addr2line ar as gasp ld nm objcopy objdump ranlib \
size strings strip doc
# Maybe should be unconditional but I don't want to get in the

View File

@ -0,0 +1,20 @@
#
# $FreeBSD$
#
.include "../Makefile.inc0"
.PATH: ${SRCDIR}/gas
PROG= gasp
SRCS+= gasp.c macro.c sb.c hash.c
CFLAGS+= -I${SRCDIR}
CFLAGS+= -I${SRCDIR}/gas
CFLAGS+= -I${SRCDIR}/gas/config
CFLAGS+= -I${.CURDIR}/../as/as_${MACHINE_ARCH}
CFLAGS+= -DBFD_ASSEMBLER
LDADD+= -L${RELTOP}/libiberty -liberty
DPADD+= ${RELTOP}/libiberty/libiberty.a
NOMAN= 1
.include <bsd.prog.mk>