diff options
author | Yao Qi <yao@codesourcery.com> | 2011-02-17 02:15:22 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2011-02-17 02:15:22 +0000 |
commit | 946ebb0d70392191231816941cdd0a8ebd0e4e9b (patch) | |
tree | 5ed28422b95536dbddd05301c0ad8d5084ca75ad | |
parent | acad30882ca6b75d26dc9077851255c46db8be52 (diff) | |
download | gdb-946ebb0d70392191231816941cdd0a8ebd0e4e9b.zip gdb-946ebb0d70392191231816941cdd0a8ebd0e4e9b.tar.gz gdb-946ebb0d70392191231816941cdd0a8ebd0e4e9b.tar.bz2 |
2011-02-17 Yao Qi <yao@codesourcery.com>
* common/Makefile.in: Add more targets for make.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/common/Makefile.in | 17 |
2 files changed, 22 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d73e431..16add3b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2011-02-17 Yao Qi <yao@codesourcery.com> + + * common/Makefile.in: Add more targets for make. + 2011-02-16 Tom Tromey <tromey@redhat.com> * dwarf2loc.c (unimplemented): Fix typo. @@ -21,7 +25,7 @@ * ax-gdb.c.c (gen_expr) <UNOP_MEMVAL>: Handle value kinds other than axs_rvalue. -2011-02-16 Yao Qi <yao@qiyaows> +2011-02-16 Yao Qi <yao@codesourcery.com> * infrun.c (get_displaced_step_closure_by_addr): New. * inferior.h: Declare it. diff --git a/gdb/common/Makefile.in b/gdb/common/Makefile.in index 29f18e0..a87f2d1 100644 --- a/gdb/common/Makefile.in +++ b/gdb/common/Makefile.in @@ -91,3 +91,20 @@ clean mostlyclean: distclean maintainer-clean realclean: clean -rm -f *~ -rm -f Makefile config.status config.log + +.PHONY: install +install: all + +.PHONY: install-only +install-only: + +.PHONY: uninstall +uninstall: + +.PHONY: check installcheck info dvi pdf html +.PHONY: install-info install-pdf install-html clean-info +check installcheck: +info dvi pdf html: +install-info install-pdf install-html: +clean-info: + |