1# Copyright (C) 2008-2021 Free Software Foundation, Inc.
2#
3# This file is part of GCC.
4#
5# GCC 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, or (at your option)
8# any later version.
9#
10# GCC 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 GCC; see the file COPYING3.  If not see
17# <http://www.gnu.org/licenses/>.
18
19OPTIONS_H_EXTRA += $(srcdir)/config/i386/stringop.def
20TM_H += $(srcdir)/config/i386/x86-tune.def \
21	$(srcdir)/common/config/i386/i386-cpuinfo.h \
22	$(srcdir)/config/i386/i386-isa.def
23PASSES_EXTRA += $(srcdir)/config/i386/i386-passes.def
24
25i386-c.o: $(srcdir)/config/i386/i386-c.c
26	  $(COMPILE) $<
27	  $(POSTCOMPILE)
28
29x86-tune-sched.o: $(srcdir)/config/i386/x86-tune-sched.c
30	  $(COMPILE) $<
31	  $(POSTCOMPILE)
32
33x86-tune-sched-bd.o: $(srcdir)/config/i386/x86-tune-sched-bd.c
34	  $(COMPILE) $<
35	  $(POSTCOMPILE)
36
37x86-tune-sched-atom.o: $(srcdir)/config/i386/x86-tune-sched-atom.c
38	  $(COMPILE) $<
39	  $(POSTCOMPILE)
40
41x86-tune-sched-core.o: $(srcdir)/config/i386/x86-tune-sched-core.c
42	  $(COMPILE) $<
43	  $(POSTCOMPILE)
44
45i386-d.o: $(srcdir)/config/i386/i386-d.c
46	$(COMPILE) $<
47	$(POSTCOMPILE)
48
49i386-options.o: $(srcdir)/config/i386/i386-options.c
50	$(COMPILE) $<
51	$(POSTCOMPILE)
52
53i386-builtins.o: $(srcdir)/config/i386/i386-builtins.c
54	$(COMPILE) $<
55	$(POSTCOMPILE)
56
57i386-expand.o: $(srcdir)/config/i386/i386-expand.c
58	$(COMPILE) $<
59	$(POSTCOMPILE)
60
61i386-features.o: $(srcdir)/config/i386/i386-features.c
62	$(COMPILE) $<
63	$(POSTCOMPILE)
64
65i386.o: i386-builtin-types.inc
66
67i386-builtin-types.inc: s-i386-bt ; @true
68s-i386-bt: $(srcdir)/config/i386/i386-builtin-types.awk \
69  $(srcdir)/config/i386/i386-builtin-types.def
70	$(AWK) -f $^ > tmp-bt.inc
71	$(SHELL) $(srcdir)/../move-if-change tmp-bt.inc i386-builtin-types.inc
72	$(STAMP) $@
73