From 9b86c7e2e203f0a739adda41c867594df2b99561 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Wed, 4 Sep 1996 19:11:53 +0000 Subject: [PATCH] Second pass at canadian cross --- sim/d10v/ChangeLog | 10 +++++++++- sim/d10v/Makefile.in | 29 ++++++++++++++++++++--------- 2 files changed, 29 insertions(+), 10 deletions(-) diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog index aaa1cf49fb7..32381d854e6 100644 --- a/sim/d10v/ChangeLog +++ b/sim/d10v/ChangeLog @@ -42,8 +42,16 @@ Wed Sep 4 11:35:17 1996 Michael Meissner (CC_FOR_BUILD,gencode): Use CC_FOR_BUILD to compile gencode. (run): By default, the math library is not needed to be linked in. - ({BFD,OPCODES,LIBIBERTY}_LIB): Define as variables so they can be + ({BFD,LIBIBERTY}_LIB): Define as variables so they can be overridden. + (VPATH): Don't set to anything but @srcdir@ to work with non-GNU + makes. + ({run,callback}.o): Provide explicit paths to their appropriate + source directories. + (gencode{,.o},d10v-opc.o): Split compilation into creating object + and linking. Instead of linking in libopcodes.a, just compile + d10v-opc.o directly to handle canadian cross. + (CSEARCH): Add opcodes directory. * configure.in (--enable-sim-cflags): New switch to allow user to set the defaults. diff --git a/sim/d10v/Makefile.in b/sim/d10v/Makefile.in index c56321b840e..56becf84478 100644 --- a/sim/d10v/Makefile.in +++ b/sim/d10v/Makefile.in @@ -18,7 +18,7 @@ default: all -VPATH = @srcdir@:@srcdir@/../common:@srcdir@/../../gdb/ +VPATH = @srcdir@ srcdir = @srcdir@ srcroot = $(srcdir)/../.. @@ -79,24 +79,29 @@ X_LIB= MATH_LIB= -INCLUDE = d10v_sim.h +INCLUDE = d10v_sim.h $(srcdir)/../../gdb/callback.h INCDIR = $(srcdir)/../../include CSEARCH = -I. -I$(srcdir) -I../../include \ - -I../../bfd -I$(INCDIR) -I$(srcdir)/../../bfd -I$(srcdir)/../../gdb -I$(srcdir)/../../newlib/libc/sys/d10v + -I../../bfd -I$(INCDIR) -I$(srcdir)/../../bfd -I$(srcdir)/../../gdb -I$(srcdir)/../../newlib/libc/sys/d10v \ + -I$(srcdir)/opcodes DEP = mkdep LIBIBERTY_LIB = ../../libiberty/libiberty.a BFD_LIB = ../../bfd/libbfd.a -OPCODES_LIB = ../../opcodes/libopcodes.a all: run libsim.a run: interp.o $(X) run.o table.o callback.o simops.o - $(CC) $(CFLAGS) $(CONFIG_CFLAGS) -o run $(X) interp.o table.o callback.o simops.o run.o $(BFD_LIB) $(LIBIBERTY_LIB) $(X_LIB) $(MATH_LIB) + $(CC) $(CFLAGS) $(CONFIG_CFLAGS) -o run $(X) interp.o table.o callback.o simops.o run.o \ + $(BFD_LIB) $(LIBIBERTY_LIB) $(X_LIB) $(MATH_LIB) interp.o:interp.c table.c $(INCLUDE) -run.o:run.c $(INCLUDE) -simops.o:simops.c $(INCLUDE) +run.o: $(srcdir)/../common/run.c $(INCLUDE) + $(CC) -c $(CFLAGS) $(CONFIG_CFLAGS) $< + +simops.o: simops.c $(INCLUDE) +callback.o: $(srcdir)/../../gdb/callback.c $(INCLUDE) + $(CC) -c $(CFLAGS) $(CONFIG_CFLAGS) $< libsim.a:interp.o table.o simops.o $(AR) $(ARFLAGS) libsim.a interp.o table.o simops.o @@ -108,8 +113,14 @@ simops.h: gencode table.c: gencode simops.h ./gencode >$@ -gencode: gencode.c ../../opcodes/libopcodes.a $(INCLUDE) - $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode $(srcdir)/gencode.c $(OPCODES_LIB) +gencode.o: gencode.c $(INCLUDE) + $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c + +d10v-opc.o: $(srcdir)/../../opcodes/d10v-opc.c + $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/../../opcodes/d10v-opc.c + +gencode: gencode.o d10v-opc.o + $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o d10v-opc.o $(BUILD_LIB) .c.o: $(CC) -c $(CFLAGS) $(CONFIG_CFLAGS) $< -- 2.30.2