Makefile.in 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. # Makefile template for Configure for the frv simulator
  2. # Copyright (C) 1998-2015 Free Software Foundation, Inc.
  3. # Contributed by Red Hat.
  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. ## COMMON_PRE_CONFIG_FRAG
  18. FRV_OBJS = frv.o cpu.o decode.o sem.o model.o mloop.o cgen-par.o
  19. SIM_OBJS = \
  20. $(SIM_NEW_COMMON_OBJS) \
  21. sim-hload.o \
  22. sim-model.o \
  23. sim-reg.o \
  24. cgen-utils.o cgen-trace.o cgen-scache.o cgen-fpu.o cgen-accfp.o \
  25. cgen-run.o sim-reason.o sim-stop.o \
  26. sim-if.o arch.o \
  27. $(FRV_OBJS) \
  28. traps.o interrupts.o memory.o cache.o pipeline.o \
  29. profile.o profile-fr400.o profile-fr450.o profile-fr500.o profile-fr550.o options.o \
  30. devices.o reset.o registers.o
  31. # Extra headers included by sim-main.h.
  32. SIM_EXTRA_DEPS = \
  33. $(CGEN_INCLUDE_DEPS) \
  34. arch.h cpuall.h frv-sim.h $(srcdir)/../../opcodes/frv-desc.h cache.h \
  35. registers.h profile.h \
  36. $(sim-options_h)
  37. SIM_EXTRA_CFLAGS = @sim_trapdump@
  38. SIM_EXTRA_CLEAN = frv-clean
  39. # This selects the frv newlib/libgloss syscall definitions.
  40. NL_TARGET = -DNL_TARGET_frv
  41. ## COMMON_POST_CONFIG_FRAG
  42. arch = frv
  43. arch.o: arch.c $(SIM_MAIN_DEPS)
  44. devices.o: devices.c $(SIM_MAIN_DEPS)
  45. # FRV objs
  46. FRVBF_INCLUDE_DEPS = \
  47. $(CGEN_MAIN_CPU_DEPS) \
  48. $(SIM_EXTRA_DEPS) \
  49. cpu.h decode.h eng.h
  50. frv.o: frv.c $(FRVBF_INCLUDE_DEPS)
  51. traps.o: traps.c $(FRVBF_INCLUDE_DEPS)
  52. pipeline.o: pipeline.c $(FRVBF_INCLUDE_DEPS)
  53. interrupts.o: interrupts.c $(FRVBF_INCLUDE_DEPS)
  54. memory.o: memory.c $(FRVBF_INCLUDE_DEPS)
  55. cache.o: cache.c $(FRVBF_INCLUDE_DEPS)
  56. options.o: options.c $(FRVBF_INCLUDE_DEPS)
  57. reset.o: reset.c $(FRVBF_INCLUDE_DEPS)
  58. registers.o: registers.c $(FRVBF_INCLUDE_DEPS)
  59. profile.o: profile.c profile-fr400.h profile-fr500.h profile-fr550.h $(FRVBF_INCLUDE_DEPS)
  60. profile-fr400.o: profile-fr400.c profile-fr400.h $(FRVBF_INCLUDE_DEPS)
  61. profile-fr450.o: profile-fr450.c $(FRVBF_INCLUDE_DEPS)
  62. profile-fr500.o: profile-fr500.c profile-fr500.h $(FRVBF_INCLUDE_DEPS)
  63. profile-fr550.o: profile-fr550.c profile-fr550.h $(FRVBF_INCLUDE_DEPS)
  64. sim-if.o: sim-if.c $(FRVBF_INCLUDE_DEPS) $(srcdir)/../common/sim-core.h eng.h
  65. # FIXME: Use of `mono' is wip.
  66. mloop.c eng.h: stamp-mloop
  67. stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile
  68. $(SHELL) $(srccom)/genmloop.sh -shell $(SHELL) \
  69. -mono -scache -parallel-generic-write -parallel-only \
  70. -cpu frvbf -infile $(srcdir)/mloop.in
  71. $(SHELL) $(srcroot)/move-if-change eng.hin eng.h
  72. $(SHELL) $(srcroot)/move-if-change mloop.cin mloop.c
  73. touch stamp-mloop
  74. mloop.o: mloop.c $(FRVBF_INCLUDE_DEPS)
  75. cpu.o: cpu.c $(FRVBF_INCLUDE_DEPS)
  76. decode.o: decode.c $(FRVBF_INCLUDE_DEPS)
  77. sem.o: sem.c $(FRVBF_INCLUDE_DEPS)
  78. model.o: model.c $(FRVBF_INCLUDE_DEPS)
  79. frv-clean:
  80. rm -f mloop.c eng.h stamp-mloop
  81. rm -f tmp-*
  82. rm -f stamp-arch stamp-cpu
  83. # cgen support, enable with --enable-cgen-maint
  84. CGEN_MAINT = ; @true
  85. # The following line is commented in or out depending upon --enable-cgen-maint.
  86. @CGEN_MAINT@CGEN_MAINT =
  87. stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(srcdir)/../../cpu/frv.cpu
  88. $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=all \
  89. archfile=$(srcdir)/../../cpu/frv.cpu \
  90. FLAGS="with-scache"
  91. touch stamp-arch
  92. arch.h arch.c cpuall.h: $(CGEN_MAINT) stamp-arch
  93. # @true
  94. stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(srcdir)/../../cpu/frv.cpu
  95. $(MAKE) cgen-cpu-decode $(CGEN_FLAGS_TO_PASS) \
  96. cpu=frvbf mach=frv,fr550,fr500,fr450,fr400,tomcat,simple SUFFIX= \
  97. archfile=$(srcdir)/../../cpu/frv.cpu \
  98. FLAGS="with-scache with-profile=fn with-generic-write with-parallel-only" \
  99. EXTRAFILES="$(CGEN_CPU_SEM)"
  100. touch stamp-cpu
  101. cpu.h sem.c model.c decode.c decode.h: $(CGEN_MAINT) stamp-cpu
  102. # @true