diff options
author | Mark Alexander <marka@cygnus> | 1998-02-23 17:51:23 +0000 |
---|---|---|
committer | Mark Alexander <marka@cygnus> | 1998-02-23 17:51:23 +0000 |
commit | e04b0d76da8a0c1e6f321abf1fbed387a12c232c (patch) | |
tree | c7971a73e2115fbcb45486849cb156fe430e6632 /sim/mn10300/Makefile.in | |
parent | 0504414dc9a4b7803c014b6257ed9adf2d86db6b (diff) | |
download | gdb-e04b0d76da8a0c1e6f321abf1fbed387a12c232c.zip gdb-e04b0d76da8a0c1e6f321abf1fbed387a12c232c.tar.gz gdb-e04b0d76da8a0c1e6f321abf1fbed387a12c232c.tar.bz2 |
* Makefile.in: Get header files from libgloss/mn10300/sys.
Diffstat (limited to 'sim/mn10300/Makefile.in')
-rw-r--r-- | sim/mn10300/Makefile.in | 18 |
1 files changed, 10 insertions, 8 deletions
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 |