sim: sh: clean up some warnings
[deliverable/binutils-gdb.git] / sim / sh / Makefile.in
CommitLineData
c906108c 1# Makefile template for Configure for the SH sim library.
32d0add0 2# Copyright (C) 1990-2015 Free Software Foundation, Inc.
c906108c
SS
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
4744ac1b 7# the Free Software Foundation; either version 3 of the License, or
c906108c 8# (at your option) any later version.
4744ac1b 9#
c906108c
SS
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.
4744ac1b 14#
c906108c 15# You should have received a copy of the GNU General Public License
4744ac1b 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
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
22SIM_EXTRA_CFLAGS = -DSIM_USE_DEPRECATED_RUN_FRONTEND
23
c906108c
SS
24SIM_OBJS = interp.o table.o sim-load.o
25SIM_EXTRA_LIBS = -lm
26SIM_EXTRA_CLEAN = sh-clean
27
28## COMMON_POST_CONFIG_FRAG
29
2f14585c 30interp.o: interp.c code.c table.c ppi.c $(srcroot)/include/gdb/sim-sh.h
c906108c
SS
31
32code.c: gencode
33 ./gencode -x >code.c
34# indent code.c
35
36table.c: gencode
37 ./gencode -s >table.c
38# indent table.c
39
2532761b
JR
40ppi.c: gencode
41 ./gencode -p >ppi.c
42
c906108c 43gencode: gencode.c
ed4d32c2
MF
44 $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(WARN_CFLAGS) \
45 -o gencode $(srcdir)/gencode.c
c906108c
SS
46
47sh-clean:
48 rm -f gencode code.c table.c
This page took 0.626724 seconds and 4 git commands to generate.