diff options
author | jimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-12-23 21:13:11 +0000 |
---|---|---|
committer | jimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2009-12-23 21:13:11 +0000 |
commit | 5a6e1d3f03ec2c8ccbb63edaccf00ecd02e148bc (patch) | |
tree | a8e809508b6e5094cb01801cb843836a4220ef11 /src/tools/linux/dump_syms/Makefile | |
parent | fix compilation on 64-bit, followup from issue 357 (diff) | |
download | breakpad-5a6e1d3f03ec2c8ccbb63edaccf00ecd02e148bc.tar.xz |
Breakpad Linux dumper: move DumpStabsHandler into its own file, for testing.
This will make it easier to write unit tests for DumpStabsHandler.
a=jimblandy, r=nealsid
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@464 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/tools/linux/dump_syms/Makefile')
-rw-r--r-- | src/tools/linux/dump_syms/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/linux/dump_syms/Makefile b/src/tools/linux/dump_syms/Makefile index 94871da7..239e6f7a 100644 --- a/src/tools/linux/dump_syms/Makefile +++ b/src/tools/linux/dump_syms/Makefile @@ -61,6 +61,7 @@ COVERAGE_SOURCES = ### debugging information in Linux executables. all:: dump_syms dump_syms: \ + dump_stabs.o \ dump_syms.o \ dump_symbols.o \ file_id.o \ @@ -74,6 +75,7 @@ clean:: dump_syms.o: dump_syms.cc VPATH += $(SRC)/common/linux +dump_stabs.o: dump_stabs.cc dump_symbols.o: dump_symbols.cc file_id.o: file_id.cc module.o: module.cc |