diff options
Diffstat (limited to 'sim/m68hc11/Makefile.in')
-rw-r--r-- | sim/m68hc11/Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sim/m68hc11/Makefile.in b/sim/m68hc11/Makefile.in index 6cbf400..d2fe599 100644 --- a/sim/m68hc11/Makefile.in +++ b/sim/m68hc11/Makefile.in @@ -1,5 +1,5 @@ # Makefile template for Configure for the 68HC11 sim library. -# Copyright (C) 1999, 2000 Free Software Foundation, Inc. +# Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. # Written by Cygnus Support. # # This program is free software; you can redistribute it and/or modify @@ -18,7 +18,8 @@ ## COMMON_PRE_CONFIG_FRAG -M68HC11_OBJS = interp.o m68hc11int.o emulos.o interrupts.o m68hc11_sim.o +M68HC11_OBJS = interp.o m68hc11int.o m68hc12int.o \ + emulos.o interrupts.o m68hc11_sim.o # List of main object files for `run'. SIM_RUN_OBJS = nrun.o @@ -49,10 +50,13 @@ INCLUDE = $(srcdir)/../../include/callback.h \ ## COMMON_POST_CONFIG_FRAG m68hc11int.c: gencode - ./gencode > $@ + ./gencode -m6811 > $@ + +m68hc12int.c: gencode + ./gencode -m6812 > $@ gencode: gencode.c - $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode $< + $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode gencode.c interp.o: interp.c $(INCLUDE) |