diff options
author | obrien <obrien@FreeBSD.org> | 2001-10-14 01:47:30 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-10-14 01:47:30 +0000 |
commit | bbe4c70f089fc5281cdb4d986df39258cefd5dfe (patch) | |
tree | 5d033ea416ba46beaa0877d8f7255c65f3abcede /gnu | |
parent | ca2572a2e97c6c78b117c5e2aff2073d70c05057 (diff) | |
download | FreeBSD-src-bbe4c70f089fc5281cdb4d986df39258cefd5dfe.zip FreeBSD-src-bbe4c70f089fc5281cdb4d986df39258cefd5dfe.tar.gz |
Clean up the formatting.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/binutils/as/Makefile | 10 | ||||
-rw-r--r-- | gnu/usr.bin/binutils/as/Makefile.inc0 | 44 |
2 files changed, 25 insertions, 29 deletions
diff --git a/gnu/usr.bin/binutils/as/Makefile b/gnu/usr.bin/binutils/as/Makefile index 0e69355..ec92738 100644 --- a/gnu/usr.bin/binutils/as/Makefile +++ b/gnu/usr.bin/binutils/as/Makefile @@ -1,25 +1,23 @@ -# # $FreeBSD$ -# .include "${.CURDIR}/../Makefile.inc0" -GASES= ${BINUTIL_ARCH} -FORMATS= freebsd +GASES= ${BINUTIL_ARCH} +FORMATS=freebsd # Only build the cross tools when not cross-compiling. .if ${TARGET_ARCH} == ${MACHINE_ARCH} .if defined(CROSS_ARCH) .for _g in ${CROSS_ARCH} .if (${GASES:R:M${_g:R}} == "") -GASES+=$(_g) +GASES+= $(_g) .endif .endfor .endif .if defined(CROSS_FORMATS) .for _f in ${CROSS_FORMATS} .if (${FORMATS:R:M${_f:R}} == "") -FORMATS+=$(_f) +FORMATS+= $(_f) .endif .endfor .endif diff --git a/gnu/usr.bin/binutils/as/Makefile.inc0 b/gnu/usr.bin/binutils/as/Makefile.inc0 index e61d6d7..9b3ccb1 100644 --- a/gnu/usr.bin/binutils/as/Makefile.inc0 +++ b/gnu/usr.bin/binutils/as/Makefile.inc0 @@ -2,35 +2,33 @@ .include "${.CURDIR}/../../Makefile.inc0" -RELTOP:= ../${RELTOP} +RELTOP:= ../${RELTOP} .PATH: ${SRCDIR}/gas ${SRCDIR}/gas/config -MAN= doc/as.1 -SRCS+= app.c as.c atof-generic.c atof-ieee.c bignum-copy.c \ - cond.c dwarf2dbg.c ecoff.c expr.c flonum-copy.c flonum-konst.c \ - flonum-mult.c frags.c hash.c input-file.c \ - input-scrub.c listing.c literal.c macro.c messages.c \ - output-file.c read.c sb.c stabs.c \ - subsegs.c symbols.c write.c depend.c ehopt.c -CFLAGS+= -I${SRCDIR}/gas -CFLAGS+= -I${SRCDIR}/gas/config -CFLAGS+= -I${SRCDIR} -CFLAGS+= -DVERSION=\"${VERSION}\" -DBFD_VERSION=\"${VERSION}\" +MAN= doc/as.1 +SRCS+= app.c as.c atof-generic.c atof-ieee.c bignum-copy.c \ + cond.c dwarf2dbg.c ecoff.c expr.c flonum-copy.c flonum-konst.c \ + flonum-mult.c frags.c hash.c input-file.c \ + input-scrub.c listing.c literal.c macro.c messages.c \ + output-file.c read.c sb.c stabs.c \ + subsegs.c symbols.c write.c depend.c ehopt.c +CFLAGS+= -I${SRCDIR}/gas -I${SRCDIR}/gas/config -I${SRCDIR} +CFLAGS+= -DVERSION=\"${VERSION}\" -DBFD_VERSION=\"${VERSION}\" NOSHARED?= yes -DPADD= ${RELTOP}/libbfd/libbfd.a -DPADD+= ${RELTOP}/libiberty/libiberty.a -DPADD+= ${RELTOP}/libopcodes/libopcodes.a -LDADD= ${DPADD} +DPADD= ${RELTOP}/libbfd/libbfd.a +DPADD+= ${RELTOP}/libiberty/libiberty.a +DPADD+= ${RELTOP}/libopcodes/libopcodes.a +LDADD= ${DPADD} # If set, BINUTILSDISTDIR is the path to a directory containing the full GNU # binutils release. FreeBSD only distributes the bits that are required to # build native architectures. BINUTILSDISTDIR is needed to build cross tools. -.if defined(BINUTILSDISTDIR) && exists(${BINUTILSDISTDIR}) -.PATH: ${BINUTILSDISTDIR}/gas ${BINUTILSDISTDIR}/gas/config -CFLAGS+= -I${BINUTILSDISTDIR}/gas -CFLAGS+= -I${BINUTILSDISTDIR}/gas/config -CFLAGS+= -I${BINUTILSDISTDIR}/bfd -CFLAGS+= -I${BINUTILSDISTDIR}/include -CFLAGS+= -I${BINUTILSDISTDIR} +.if defined(BINUTILSDISTDIR) && exists(${BINUTILSDISTDIR}) +.PATH: ${BINUTILSDISTDIR}/gas ${BINUTILSDISTDIR}/gas/config +CFLAGS+= -I${BINUTILSDISTDIR}/gas +CFLAGS+= -I${BINUTILSDISTDIR}/gas/config +CFLAGS+= -I${BINUTILSDISTDIR}/bfd +CFLAGS+= -I${BINUTILSDISTDIR}/include +CFLAGS+= -I${BINUTILSDISTDIR} .endif |