1# Makefile template for Configure for the 68HC11 sim library. 2# Copyright (C) 1999-2015 Free Software Foundation, Inc. 3# Written by Cygnus Support. 4# 5# This program is free software; you can redistribute it and/or modify 6# it under the terms of the GNU General Public License as published by 7# the Free Software Foundation; either version 3 of the License, or 8# (at your option) any later version. 9# 10# This program is distributed in the hope that it will be useful, 11# but WITHOUT ANY WARRANTY; without even the implied warranty of 12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13# GNU General Public License for more details. 14# 15# You should have received a copy of the GNU General Public License 16# along with this program. If not, see <http://www.gnu.org/licenses/>. 17 18## COMMON_PRE_CONFIG_FRAG 19 20M68HC11_OBJS = interp.o m68hc11int.o m68hc12int.o \ 21 emulos.o interrupts.o m68hc11_sim.o 22 23SIM_OBJS = $(M68HC11_OBJS) \ 24 $(SIM_NEW_COMMON_OBJS) \ 25 sim-load.o \ 26 sim-hload.o \ 27 sim-stop.o \ 28 sim-reason.o \ 29 sim-resume.o 30 31SIM_PROFILE= -DPROFILE=1 -DWITH_PROFILE=-1 32# We must use 32-bit addresses to support memory bank switching. 33# The WORD_BITSIZE is normally 16 but must be switched (temporarily) 34# to 32 to avoid a bug in the sim-common which uses 'unsigned_word' 35# instead of 'address_word' in some places (the result is a truncation 36# of the 32-bit address to 16-bit; and this breaks the simulator). 37SIM_EXTRA_CFLAGS = -DWITH_TARGET_WORD_BITSIZE=32 \ 38 -DWITH_TARGET_CELL_BITSIZE=32 \ 39 -DWITH_TARGET_ADDRESS_BITSIZE=32 \ 40 -DWITH_TARGET_WORD_MSB=31 41SIM_EXTRA_CLEAN = clean-extra 42 43INCLUDE = $(srcdir)/../../include/gdb/callback.h \ 44 interrupts.h sim-main.h 45 46 47## COMMON_POST_CONFIG_FRAG 48 49m68hc11int.c: gencode 50 ./gencode -m6811 > $@ 51 52m68hc12int.c: gencode 53 ./gencode -m6812 > $@ 54 55gencode: gencode.c 56 $(CC_FOR_BUILD) $(BUILD_CFLAGS) -o gencode $(srcdir)/gencode.c 57 58interp.o: interp.c $(INCLUDE) 59 60clean-extra: 61 rm -f gencode m68hc11int.c 62