From: Mike Frysinger Date: Mon, 14 Jun 2021 01:35:05 +0000 (-0400) Subject: sim: ppc: use common version.o too X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=92a3f613632902b6ccb2b285d6f21b89cc9e1f6b;p=deliverable%2Fbinutils-gdb.git sim: ppc: use common version.o too The common version.o we're building can be used for the ppc subdir, so switch it over too. --- diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index 2b1b2e8a31..e2232a59d2 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,3 +1,9 @@ +2021-06-13 Mike Frysinger + + * Makefile.in (COMMON_OBJS_NAMES, +COMMON_OBJS): New variables. + (LIB_OBJ): Replace version.o with $(COMMON_OBJS). + (version.c, version.o): Delete rules. + 2021-06-12 Mike Frysinger * Makefile.in: Add $(EXEEXT) to run and psim. diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index af9695d23f..0814a34fbc 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -493,6 +493,9 @@ MAIN_SRC = \ gdb-sim.c \ sim_calls.c +COMMON_OBJS_NAMES = \ + version.o +COMMON_OBJS = $(COMMON_OBJS_NAMES:%=../common/common_libcommon_a-%) # NOTE: semantics, idecode and psim put last so smaller files are compiled # first @@ -527,7 +530,7 @@ LIB_OBJ = \ support.o \ @sim_fpu@ \ psim.o \ - version.o \ + $(COMMON_OBJS) \ $(PACKAGE_OBJ) \ $(HW_OBJ) \ options.o @@ -554,12 +557,6 @@ $(TARGETLIB): tmp-igen tmp-dgen tmp-hw tmp-pk tmp-defines $(LIB_OBJ) $(GDB_OBJ) $(AR) $(AR_FLAGS) $(TARGETLIB) $(LIB_OBJ) $(GDB_OBJ) $(RANLIB) $(TARGETLIB) -version.c: Makefile $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcroot)/sim/common/create-version.sh - $(SHELL) $(srcroot)/sim/common/create-version.sh $(srcroot)/gdb $@.tmp - $(SHELL) $(srcroot)/move-if-change $@.tmp $@ - touch $@ -version.o: version.c $(version_h) - psim.o: psim.c $(CPU_H) $(IDECODE_H) $(OPTIONS_H) $(TREE_H) $(BFD_H) bits.o: bits.c $(BASICS_H)