Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / sim / m32c / Makefile.in
CommitLineData
d45a4bef
JB
1#### Makefile.in --- Makefile template for the M32C simulator
2
88b9d363 3### Copyright (C) 2005-2022 Free Software Foundation, Inc.
d45a4bef
JB
4### Contributed by Red Hat, Inc.
5###
6### This file is part of the GNU simulators.
7###
4744ac1b
JB
8### This program is free software; you can redistribute it and/or modify
9### it under the terms of the GNU General Public License as published by
10### the Free Software Foundation; either version 3 of the License, or
11### (at your option) any later version.
12###
13### This program is distributed in the hope that it will be useful,
14### but WITHOUT ANY WARRANTY; without even the implied warranty of
15### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16### GNU General Public License for more details.
17###
d45a4bef 18### You should have received a copy of the GNU General Public License
4744ac1b 19### along with this program. If not, see <http://www.gnu.org/licenses/>.
d45a4bef
JB
20
21## COMMON_PRE_CONFIG_FRAG
22
3877a145 23SIM_EXTRA_CFLAGS = -Wall -DTIMER_A
d45a4bef
JB
24
25SIM_RUN_OBJS = \
26 main.o \
27 $(ENDLIST)
28
29SIM_OBJS = \
30 gdb-if.o \
31 int.o \
32 load.o \
33 mem.o \
34 misc.o \
35 reg.o \
36 r8c.o \
37 m32c.o \
38 srcdest.o \
39 syscalls.o \
40 trace.o \
41 $(ENDLIST)
42
d45a4bef
JB
43## COMMON_POST_CONFIG_FRAG
44
45arch = m32c
46
2b8d134b
SM
47# opc2c leaks memory, and therefore makes AddressSanitizer unhappy. Disable
48# leak detection while running it.
49OPC2C = ASAN_OPTIONS=detect_leaks=0 ./opc2c
50
d45a4bef 51r8c.c : r8c.opc opc2c
2b8d134b
SM
52 $(OPC2C) -l r8c.out $(srcdir)/r8c.opc > r8c.c.tmp
53 mv r8c.c.tmp r8c.c
d45a4bef
JB
54
55m32c.c : m32c.opc opc2c
2b8d134b
SM
56 $(OPC2C) -l m32c.out $(srcdir)/m32c.opc > m32c.c.tmp
57 mv m32c.c.tmp m32c.c
d45a4bef 58
a5884035 59opc2c : opc2c.o
c6c7769d 60 $(LINK_FOR_BUILD) $^
d45a4bef 61
d45a4bef
JB
62encodings:
63 grep '/\* [01]' $(srcdir)/r8c.opc | sort
64
a5884035 65opc2c.o : opc2c.c
c6c7769d 66 $(COMPILE_FOR_BUILD) -c $(srcdir)/opc2c.c
This page took 1.013272 seconds and 4 git commands to generate.