aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sim/mn10300/ChangeLog4
-rw-r--r--sim/mn10300/Makefile.in18
2 files changed, 14 insertions, 8 deletions
diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog
index 4aa807b..fd20455 100644
--- a/sim/mn10300/ChangeLog
+++ b/sim/mn10300/ChangeLog
@@ -1,3 +1,7 @@
+Mon Feb 23 09:44:38 1998 Mark Alexander <marka@cygnus.com>
+
+ * Makefile.in: Get header files from libgloss/mn10300/sys.
+
Sun Feb 22 16:02:24 1998 Jeffrey A Law (law@cygnus.com)
* simops.c: Include sim-types.h.
diff --git a/sim/mn10300/Makefile.in b/sim/mn10300/Makefile.in
index f0d2a82..50d96e0 100644
--- a/sim/mn10300/Makefile.in
+++ b/sim/mn10300/Makefile.in
@@ -1,5 +1,5 @@
# Makefile template for Configure for the mn10300 sim library.
-# Copyright (C) 1996 Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
# Written by Cygnus Support.
#
# This program is free software; you can redistribute it and/or modify
@@ -16,13 +16,15 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-SIM_OBJS = interp.o table.o simops.o
-SIM_EXTRA_CFLAGS = -I$(srcdir)/../../newlib/libc/sys/sysmec
+## COMMON_PRE_CONFIG_FRAG
+
+SIM_OBJS = interp.o table.o simops.o sim-load.o
+SIM_EXTRA_CFLAGS = -I$(srcdir)/../../libgloss/mn10300/sys
SIM_EXTRA_CLEAN = clean-extra
INCLUDE = mn10300_sim.h $(srcdir)/../../include/callback.h
-@COMMON_MAKEFILE_FRAG@
+## COMMON_POST_CONFIG_FRAG
simops.h: gencode
./gencode -h >$@
@@ -33,11 +35,11 @@ table.c: gencode simops.h
gencode.o: gencode.c $(INCLUDE)
$(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/gencode.c
-mn10300-opc.o: $(srcdir)/../../opcodes/mn10300-opc.c
- $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/../../opcodes/mn10300-opc.c
+m10300-opc.o: $(srcdir)/../../opcodes/m10300-opc.c
+ $(CC_FOR_BUILD) $(BUILD_CFLAGS) -c $(srcdir)/../../opcodes/m10300-opc.c
-gencode: gencode.o mn10300-opc.o
- $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o mn10300-opc.o $(BUILD_LIB)
+gencode: gencode.o m10300-opc.o
+ $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.o m10300-opc.o $(BUILD_LIB)
clean-extra:
rm -f table.c simops.h gencode