Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Oct 2010 20:08:16 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r214169 - projects/binutils-2.17/gnu/usr.bin/binutils/libbfd
Message-ID:  <201010212008.o9LK8GaP002454@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Thu Oct 21 20:08:16 2010
New Revision: 214169
URL: http://svn.freebsd.org/changeset/base/214169

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/libbfd/Makefile

Modified: projects/binutils-2.17/gnu/usr.bin/binutils/libbfd/Makefile
==============================================================================
--- projects/binutils-2.17/gnu/usr.bin/binutils/libbfd/Makefile	Thu Oct 21 20:04:28 2010	(r214168)
+++ projects/binutils-2.17/gnu/usr.bin/binutils/libbfd/Makefile	Thu Oct 21 20:08:16 2010	(r214169)
@@ -5,11 +5,41 @@
 .PATH: ${SRCDIR}/bfd ${SRCDIR}/opcodes
 
 LIB=	bfd
-SRCS+=	archive.c archive64.c archures.c bfd.c bfdwin.c binary.c cache.c \
-	coffgen.c corefile.c elf.c elf-eh-frame.c elf-strtab.c format.c \
-	hash.c ihex.c init.c libbfd.c linker.c merge.c opncls.c reloc.c \
-	section.c srec.c stab-syms.c stabs.c syms.c targets.c tekhex.c \
-	targmatch.h dwarf1.c dwarf2.c config.h bfdver.h bfdio.c simple.c
+SRCS+=	archive.c \
+	archive64.c \
+	archures.c \
+	bfd.c \
+	bfdio.c \
+	bfdver.h \
+	bfdwin.c \
+	binary.c \
+	cache.c \
+	coffgen.c \
+	config.h \
+	corefile.c \
+	dwarf1.c \
+	dwarf2.c \
+	elf-eh-frame.c \
+	elf-strtab.c \
+	elf.c \
+	format.c \
+	hash.c \
+	ihex.c \
+	init.c \
+	libbfd.c \
+	linker.c \
+	merge.c \
+	opncls.c \
+	reloc.c \
+	section.c \
+	simple.c \
+	srec.c \
+	stab-syms.c \
+	stabs.c \
+	syms.c \
+	targets.c \
+	targmatch.h \
+	tekhex.c
 WARNS?=	0
 .if (${TARGET_ARCH} == "ia64" || ${TARGET_ARCH} == "sparc64")
 WARNS?=	2



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201010212008.o9LK8GaP002454>