Makefile.in 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # Makefile template for Configure for the IQ2000 simulator
  2. # Copyright (C) 1998-2015 Free Software Foundation, Inc.
  3. # Contributed 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
  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. IQ2000_OBJS = iq2000.o cpu.o decode.o sem.o model.o mloop.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 \
  25. cgen-run.o sim-reason.o sim-stop.o \
  26. sim-if.o arch.o \
  27. $(IQ2000_OBJS)
  28. # Extra headers included by sim-main.h.
  29. SIM_EXTRA_DEPS = \
  30. $(CGEN_INCLUDE_DEPS) \
  31. arch.h cpuall.h iq2000-sim.h $(srcdir)/../../opcodes/iq2000-desc.h
  32. SIM_EXTRA_CFLAGS =
  33. ALL_CPU_CFLAGS = -DHAVE_CPU_IQ2000BF -DHAVE_CPU_IQ10BF
  34. SIM_EXTRA_CLEAN = iq2000-clean
  35. ## COMMON_POST_CONFIG_FRAG
  36. arch = iq2000
  37. sim-if.o: $(srcdir)/sim-if.c $(SIM_MAIN_DEPS) $(srcdir)/../common/sim-core.h
  38. arch.o: arch.c $(SIM_MAIN_DEPS)
  39. $(CC) -c $(srcdir)/arch.c $(ALL_CFLAGS) -UHAVE_CPU_IQ10BF
  40. devices.o: $(srcdir)/devices.c $(SIM_MAIN_DEPS)
  41. # IQ2000 objs
  42. IQ2000BF_INCLUDE_DEPS = \
  43. $(CGEN_MAIN_CPU_DEPS) \
  44. cpu.h decode.h eng.h
  45. iq2000.o: $(srcdir)/iq2000.c $(IQ2000BF_INCLUDE_DEPS)
  46. # FIXME: Use of `mono' is wip.
  47. mloop.c eng.h: stamp-mloop
  48. stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile
  49. $(SHELL) $(srccom)/genmloop.sh -shell $(SHELL) \
  50. -mono -fast -pbb -switch sem-switch.c \
  51. -cpu iq2000bf -infile $(srcdir)/mloop.in
  52. $(SHELL) $(srcroot)/move-if-change eng.hin eng.h
  53. $(SHELL) $(srcroot)/move-if-change mloop.cin mloop.c
  54. touch stamp-mloop
  55. mloop.o: mloop.c $(srcdir)/sem-switch.c $(IQ2000BF_INCLUDE_DEPS)
  56. cpu.o: $(srcdir)/cpu.c $(IQ2000BF_INCLUDE_DEPS)
  57. decode.o: $(srcdir)/decode.c $(IQ2000BF_INCLUDE_DEPS)
  58. sem.o: $(srcdir)/sem.c $(IQ2000BF_INCLUDE_DEPS)
  59. model.o: $(srcdir)/model.c $(IQ2000BF_INCLUDE_DEPS)
  60. iq2000-clean:
  61. rm -f mloop.c eng.h stamp-mloop
  62. rm -f tmp-*
  63. rm -f stamp-arch stamp-cpu
  64. # cgen support, enable with --enable-cgen-maint
  65. CGEN_MAINT = ; @true
  66. # The following line is commented in or out depending upon --enable-cgen-maint.
  67. @CGEN_MAINT@CGEN_MAINT =
  68. stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(CPU_DIR)/iq2000.cpu Makefile
  69. $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=iq2000 \
  70. archfile=$(CPU_DIR)/iq2000.cpu \
  71. FLAGS="with-scache with-profile=fn"
  72. touch stamp-arch
  73. arch.h arch.c cpuall.h: $(CGEN_MAINT) stamp-arch
  74. @true
  75. stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(CPU_DIR)/iq2000.cpu Makefile
  76. $(MAKE) cgen-cpu-decode $(CGEN_FLAGS_TO_PASS) \
  77. cpu=iq2000bf mach=iq2000 \
  78. archfile=$(CPU_DIR)/iq2000.cpu \
  79. FLAGS="with-scache with-profile=fn" \
  80. EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)"
  81. touch stamp-cpu
  82. cpu.h sem.c sem-switch.c model.c decode.c decode.h: $(CGEN_MAINT) stamp-cpu
  83. @true