diff options
author | Dan Streetman <ddstreet@canonical.com> | 2021-05-11 09:28:15 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-07-06 11:47:50 -0400 |
commit | acbf56d780b77c30276431474b41defc868e2e5c (patch) | |
tree | e91abc863fa874ae078473d3be89e64b5fafa617 /sim | |
parent | 579f0281f38afffe2ae5692f6ce61598c5dbfe8c (diff) | |
download | gdb-acbf56d780b77c30276431474b41defc868e2e5c.zip gdb-acbf56d780b77c30276431474b41defc868e2e5c.tar.gz gdb-acbf56d780b77c30276431474b41defc868e2e5c.tar.bz2 |
sim: ppc: add missing empty targets
These are copied from sim/common/Make-common.in.
On ppc the build fails without at least the 'info' target, e.g.:
Making info in ppc
make[4]: Entering directory '/<<BUILDDIR>>/gdb-10.2.2974.g5b45e89f56d+21.10.20210510155809/build/default/sim/ppc'
make[4]: *** No rule to make target 'info'. Stop.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/ppc/Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 3a5d43c..172965c 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -867,6 +867,18 @@ config.status: configure check: +html: +clean-html: +install-html: + +info: +clean-info: +install-info: + +pdf: +clean-pdf: +install-pdf: + install: installdirs a=`basename "$$(pwd)"`; \ n=`echo run | sed '$(program_transform_name)'`; \ |