diff options
author | Cary Coutant <ccoutant@google.com> | 2012-10-24 02:26:39 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2012-10-24 02:26:39 +0000 |
commit | 774299092dc99b19dac96bc9226ff3421e70bef2 (patch) | |
tree | d2fb890acbc06f180341d09777235a2fc7a0e6b1 /gold/Makefile.am | |
parent | 657d0d47ba7fd3ae014a5b2b6e46ba6c8d1c461a (diff) | |
download | gdb-774299092dc99b19dac96bc9226ff3421e70bef2.zip gdb-774299092dc99b19dac96bc9226ff3421e70bef2.tar.gz gdb-774299092dc99b19dac96bc9226ff3421e70bef2.tar.bz2 |
gold/
* dwp.h: New header file.
* dwp.cc: New source file.
* gold.h: Move shared declarations to system.h.
* system.h: New header file.
* Makefile.am: Add dwp.
* Makefile.in: Regenerate.
Diffstat (limited to 'gold/Makefile.am')
-rw-r--r-- | gold/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gold/Makefile.am b/gold/Makefile.am index aa8caca..f82d4e9 100644 --- a/gold/Makefile.am +++ b/gold/Makefile.am @@ -34,6 +34,8 @@ AM_YFLAGS = -d am__skiplex = am__skipyacc = +bin_PROGRAMS = dwp + noinst_PROGRAMS = ld-new incremental-dump noinst_LIBRARIES = libgold.a @@ -172,6 +174,12 @@ incremental_dump_DEPENDENCIES = $(TARGETOBJS) libgold.a $(LIBIBERTY) \ incremental_dump_LDADD = $(TARGETOBJS) libgold.a $(LIBIBERTY) $(LIBINTL) \ $(THREADSLIB) $(LIBDL) +dwp_SOURCES = dwp.cc +dwp_DEPENDENCIES = libgold.a $(LIBIBERTY) $(LIBINTL_DEP) +dwp_LDADD = libgold.a $(LIBIBERTY) $(GOLD_LDADD) $(LIBINTL) $(THREADSLIB) \ + $(LIBDL) +dwp_LDFLAGS = $(GOLD_LDFLAGS) + # Use an explicit dependency for the bison generated header file. expression.$(OBJEXT): yyscript.h script-sections.$(OBJEXT): yyscript.h |