* Makefile.in: Get header files from libgloss/mn10300/sys.
This commit is contained in:
parent
0504414dc9
commit
e04b0d76da
2 changed files with 14 additions and 8 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue