svn commit: r214176 - projects/binutils-2.17/gnu/usr.bin/binutils/as

Dimitry Andric dim at FreeBSD.org
Thu Oct 21 20:23:54 UTC 2010


Author: dim
Date: Thu Oct 21 20:23:53 2010
New Revision: 214176
URL: http://svn.freebsd.org/changeset/base/214176

Log:
  Use one file per line in SRCS= definition, to make insertions and
  deletions easier, and sort the file list.

Modified:
  projects/binutils-2.17/gnu/usr.bin/binutils/as/Makefile

Modified: projects/binutils-2.17/gnu/usr.bin/binutils/as/Makefile
==============================================================================
--- projects/binutils-2.17/gnu/usr.bin/binutils/as/Makefile	Thu Oct 21 20:22:32 2010	(r214175)
+++ projects/binutils-2.17/gnu/usr.bin/binutils/as/Makefile	Thu Oct 21 20:23:53 2010	(r214176)
@@ -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
 


More information about the svn-src-projects mailing list