x86: correct build dependencies in opcodes/
authorJan Beulich <jbeulich@suse.com>
Fri, 30 Sep 2022 08:14:58 +0000 (10:14 +0200)
committerJan Beulich <jbeulich@suse.com>
Fri, 30 Sep 2022 08:14:58 +0000 (10:14 +0200)
commit79d635fc64ba9ca97c24c0c52c9924dba77e9527
treeea21f6c79dccdb5b8f587d2560a1bbd2a220fcdc
parent7b94647ad00bb096348ea074fa2f19e1873eb0a7
x86: correct build dependencies in opcodes/

With the command in the rule merely being "echo", i386-tbl.h won't be
rebuilt if missing, when at the same time i386-init.h is present and
up-to-date. Use a pattern rule instead to express the multiple targets
correctly (the &: rule separator is supported only by GNU make 4.3 and
newer). Note that now, for the opposite case to work (i386-tbl.h is
up-to-date but i386-init.h is missing), i386-init.h also needs
mentioning as a dependency somewhere: Add a fake dependency for
i386-opc.lo ("fake" because i386-opc.c doesn't include that header).

At the same time use $(AM_V_GEN) in the actual rule, replacing the
earlier (open-coded) "echo". And while there also drop a duplicate
dependency of i386-gen.o on i386-opc.h.
opcodes/Makefile.am
opcodes/Makefile.in