diff options
author | dim <dim@FreeBSD.org> | 2010-10-21 20:01:21 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2010-10-21 20:01:21 +0000 |
commit | f51e1e2499fa475d0527fa0a1d4e53a33830910b (patch) | |
tree | 3c70b4e445911aac51b7a639d0542df2224cefac /gnu/usr.bin/binutils/libiberty | |
parent | 6a817821b915a1d22a51c259ff0020b57b6fd2b9 (diff) | |
download | FreeBSD-src-f51e1e2499fa475d0527fa0a1d4e53a33830910b.zip FreeBSD-src-f51e1e2499fa475d0527fa0a1d4e53a33830910b.tar.gz |
Use one file per line in SRCS= definition, to make insertions and
deletions easier.
Diffstat (limited to 'gnu/usr.bin/binutils/libiberty')
-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 292d1fc..ab737c0 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 |