1 # Copyright (C) 2008-2022 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 19 OPTIONS_H_EXTRA += $(srcdir)/config/i386/stringop.def 20 TM_H += $(srcdir)/config/i386/x86-tune.def \ 21 $(srcdir)/common/config/i386/i386-cpuinfo.h \ 22 $(srcdir)/config/i386/i386-isa.def 23 PASSES_EXTRA += $(srcdir)/config/i386/i386-passes.def 24 25 i386-c.o: $(srcdir)/config/i386/i386-c.cc 26 $(COMPILE) $< 27 $(POSTCOMPILE) 28 29 x86-tune-sched.o: $(srcdir)/config/i386/x86-tune-sched.cc 30 $(COMPILE) $< 31 $(POSTCOMPILE) 32 33 x86-tune-sched-bd.o: $(srcdir)/config/i386/x86-tune-sched-bd.cc 34 $(COMPILE) $< 35 $(POSTCOMPILE) 36 37 x86-tune-sched-atom.o: $(srcdir)/config/i386/x86-tune-sched-atom.cc 38 $(COMPILE) $< 39 $(POSTCOMPILE) 40 41 x86-tune-sched-core.o: $(srcdir)/config/i386/x86-tune-sched-core.cc 42 $(COMPILE) $< 43 $(POSTCOMPILE) 44 45 i386-d.o: $(srcdir)/config/i386/i386-d.cc 46 $(COMPILE) $< 47 $(POSTCOMPILE) 48 49 i386-options.o: $(srcdir)/config/i386/i386-options.cc 50 $(COMPILE) $< 51 $(POSTCOMPILE) 52 53 i386-builtins.o: $(srcdir)/config/i386/i386-builtins.cc 54 $(COMPILE) $< 55 $(POSTCOMPILE) 56 57 i386-expand.o: $(srcdir)/config/i386/i386-expand.cc 58 $(COMPILE) $< 59 $(POSTCOMPILE) 60 61 i386-features.o: $(srcdir)/config/i386/i386-features.cc 62 $(COMPILE) $< 63 $(POSTCOMPILE) 64 65 # i386-builtin-types.inc is included into i386-builtins.h. 66 # Below are direct users of i386-builtins.h: 67 i386.o: i386-builtin-types.inc 68 i386-builtins.o: i386-builtin-types.inc 69 i386-expand.o: i386-builtin-types.inc 70 i386-features.o: i386-builtin-types.inc 71 72 i386-builtin-types.inc: s-i386-bt ; @true 73 s-i386-bt: $(srcdir)/config/i386/i386-builtin-types.awk \ 74 $(srcdir)/config/i386/i386-builtin-types.def 75 $(AWK) -f $^ > tmp-bt.inc 76 $(SHELL) $(srcdir)/../move-if-change tmp-bt.inc i386-builtin-types.inc 77 $(STAMP) $@ 78