]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/cr16/Makefile.in
sim: cr16: delete NEED_UI_LOOP_HOOK handling
[thirdparty/binutils-gdb.git] / sim / cr16 / Makefile.in
CommitLineData
5da69716 1# Makefile template for Configure for the CR16 sim library.
32d0add0 2# Copyright (C) 2008-2015 Free Software Foundation, Inc.
5da69716 3# Contributed by M Ranga Swami Reddy <MR.Swami.Reddy@nsc.com>
fee8ec00
SR
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
465fb143
MF
20# Use the deprecated run frontend until we migrate to nrun.o
21SIM_RUN_OBJS = run.o
22
fee8ec00
SR
23SIM_OBJS = interp.o table.o simops.o endian.o sim-load.o
24SIM_EXTRA_CLEAN = clean-extra
4b0cc5ed 25SIM_EXTRA_CFLAGS = -DSIM_USE_DEPRECATED_RUN_FRONTEND
fee8ec00
SR
26
27INCLUDE = cr16_sim.h $(srcroot)/include/gdb/callback.h targ-vals.h endian.c \
28 $(srcroot)/include/gdb/sim-cr16.h
29
30# This selects the cr16 newlib/libgloss syscall definitions.
31NL_TARGET = -DNL_TARGET_cr16
32
33## COMMON_POST_CONFIG_FRAG
34
35simops.h: gencode
36 ./gencode -h >$@
37
38table.c: gencode simops.h
39 ./gencode >$@
40
41gencode.o: gencode.c $(INCLUDE)
5aedb83b 42 $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(WARN_CFLAGS) -c $(srcdir)/gencode.c
fee8ec00
SR
43
44cr16-opc.o: $(srcdir)/../../opcodes/cr16-opc.c
5aedb83b 45 $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(WARN_CFLAGS) -c $(srcdir)/../../opcodes/cr16-opc.c
fee8ec00
SR
46
47gencode: gencode.o cr16-opc.o
5aedb83b 48 $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o gencode gencode.o cr16-opc.o $(BUILD_LIB)
fee8ec00
SR
49
50clean-extra:
51 rm -f table.c simops.h gencode