This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] fix parallel make of sim/lm32


Hi.

I checked in this patch to fix parallel builds of sim/lm32.

2009-07-07  Doug Evans  <dje@sebabeach.org>

	* Makefile.in (traps.o): Add dependency on targ-vals.h to fix
	parallel makes.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/sim/lm32/Makefile.in,v
retrieving revision 1.1
diff -u -p -r1.1 Makefile.in
--- Makefile.in	18 May 2009 13:25:35 -0000	1.1
+++ Makefile.in	8 Jul 2009 06:13:11 -0000
@@ -17,7 +17,7 @@ SIM_OBJS = \
         sim-if.o arch.o \
         cpu.o decode.o sem.o model.o mloop.o \
         lm32.o traps.o user.o 
-        
+
 # List of extra dependencies.
 # Generally this consists of simulator specific files included by sim-main.h.
 SIM_EXTRA_DEPS = $(CGEN_INCLUDE_DEPS) $(srcdir)/../../opcodes/lm32-desc.h
@@ -39,6 +39,8 @@ arch = lm32 
 
 arch.o: arch.c $(SIM_MAIN_DEPS)
 
+traps.o: traps.c targ-vals.h $(SIM_MAIN_DEPS)
+
 sim-if.o: sim-if.c $(SIM_MAIN_DEPS) $(srcdir)/../common/sim-core.h
 
 LM32BF_INCLUDE_DEPS = \


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]