diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2010-10-21 20:01:21 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2010-10-21 20:01:21 +0000 |
commit | 2fe35e02e9ff6f9123e23c91d9988c60076555de (patch) | |
tree | 3c70b4e445911aac51b7a639d0542df2224cefac | |
parent | c6b1c1e809a2bed731638e9595bf81c1f763a49c (diff) | |
download | src-2fe35e02e9ff6f9123e23c91d9988c60076555de.tar.gz src-2fe35e02e9ff6f9123e23c91d9988c60076555de.zip |
Use one file per line in SRCS= definition, to make insertions and
deletions easier.
Notes
Notes:
svn path=/projects/binutils-2.17/; revision=214166
-rw-r--r-- | gnu/usr.bin/binutils/libiberty/Makefile | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/gnu/usr.bin/binutils/libiberty/Makefile b/gnu/usr.bin/binutils/libiberty/Makefile index 292d1fcbe733..ab737c04c2f7 100644 --- a/gnu/usr.bin/binutils/libiberty/Makefile +++ b/gnu/usr.bin/binutils/libiberty/Makefile @@ -5,11 +5,30 @@ .PATH: ${SRCDIR}/libiberty LIB= iberty -SRCS= argv.c concat.c choose-temp.c cp-demangle.c cp-demint.c \ - cplus-dem.c dyn-string.c getpwd.c getruntime.c floatformat.c \ - hashtab.c hex.c lbasename.c lrealpath.c make-relative-prefix.c \ - make-temp-file.c objalloc.c obstack.c safe-ctype.c xatexit.c \ - xexit.c xmalloc.c xstrdup.c xstrerror.c +SRCS= argv.c \ + concat.c \ + choose-temp.c \ + cp-demangle.c \ + cp-demint.c \ + cplus-dem.c \ + dyn-string.c \ + getpwd.c \ + getruntime.c \ + floatformat.c \ + hashtab.c \ + hex.c \ + lbasename.c \ + lrealpath.c \ + make-relative-prefix.c \ + make-temp-file.c \ + objalloc.c \ + obstack.c \ + safe-ctype.c \ + xatexit.c \ + xexit.c \ + xmalloc.c \ + xstrdup.c \ + xstrerror.c # The following files are needed by gdb(1) SRCS+= splay-tree.c |