|
|
|
@ -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 |
|
|
|
|