diff options
author | Tom Tromey <tom@tromey.com> | 2020-02-21 18:27:31 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-02-21 18:30:10 -0700 |
commit | dda42c0b7baba24d182a408574650ff162f44ec3 (patch) | |
tree | 58deb51098231b99ae23da8348620efd07a48cde /gdbserver/Makefile.in | |
parent | 5522c15d39bee8b4dcc5ba9350d88d256a14d69a (diff) | |
download | gdb-dda42c0b7baba24d182a408574650ff162f44ec3.zip gdb-dda42c0b7baba24d182a408574650ff162f44ec3.tar.gz gdb-dda42c0b7baba24d182a408574650ff162f44ec3.tar.bz2 |
Add a mostlyclean target to gdbserver
I noticed gdbserver's Makefile doesn't have a mostlyclean target. I
use this sometimes, so this patch adds it. Adding it as a synonym of
"clean" seemed to make sense, given the contents of that rule.
gdbserver/ChangeLog
2020-02-21 Tom Tromey <tom@tromey.com>
* Makefile.in (mostlyclean): New target.
Diffstat (limited to 'gdbserver/Makefile.in')
-rw-r--r-- | gdbserver/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbserver/Makefile.in b/gdbserver/Makefile.in index 1baebba..cc1eb80 100644 --- a/gdbserver/Makefile.in +++ b/gdbserver/Makefile.in @@ -455,7 +455,7 @@ TAGS: ${TAGFILES} ${TAGFILES} tags: TAGS -clean: +mostlyclean clean: rm -f *.o ${ADD_FILES} *~ rm -f gdbserver$(EXEEXT) gdbreplay$(EXEEXT) core make.log rm -f $(IPA_LIB) |