diff options
author | dim <dim@FreeBSD.org> | 2010-10-21 20:23:53 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2010-10-21 20:23:53 +0000 |
commit | 1f8e7a06a380eb2007a0019e4b31bd0c09f6c89b (patch) | |
tree | 19a0cfd09663627171098a83f356a4e48c49c701 /gnu | |
parent | 22c74400292fba548532b0c9e9b5baf9a286c3d6 (diff) | |
download | FreeBSD-src-1f8e7a06a380eb2007a0019e4b31bd0c09f6c89b.zip FreeBSD-src-1f8e7a06a380eb2007a0019e4b31bd0c09f6c89b.tar.gz |
Use one file per line in SRCS= definition, to make insertions and
deletions easier, and sort the file list.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/binutils/as/Makefile | 37 |
1 files changed, 31 insertions, 6 deletions
diff --git a/gnu/usr.bin/binutils/as/Makefile b/gnu/usr.bin/binutils/as/Makefile index 72cbd53..bfaa8be 100644 --- a/gnu/usr.bin/binutils/as/Makefile +++ b/gnu/usr.bin/binutils/as/Makefile @@ -11,12 +11,37 @@ NO_WERROR= PROG= as 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 \ - obj-elf.c output-file.c read.c sb.c stabs.c \ - subsegs.c symbols.c write.c depend.c ehopt.c dw2gencfi.c +SRCS+= app.c \ + as.c \ + atof-generic.c \ + atof-ieee.c \ + bignum-copy.c \ + cond.c \ + depend.c \ + dw2gencfi.c \ + dwarf2dbg.c \ + ecoff.c \ + ehopt.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 \ + obj-elf.c \ + output-file.c \ + read.c \ + sb.c \ + stabs.c \ + subsegs.c \ + symbols.c \ + write.c # DEO: why not used? #SRCS+= itbl-ops.c |