Makefile.in 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # Makefile template for Configure for the IQ2000 simulator
  2. # Copyright (C) 1998-2022 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. cgen-utils.o cgen-trace.o cgen-scache.o \
  22. cgen-run.o \
  23. sim-if.o arch.o \
  24. $(IQ2000_OBJS)
  25. # Extra headers included by sim-main.h.
  26. SIM_EXTRA_DEPS = \
  27. $(CGEN_INCLUDE_DEPS) \
  28. arch.h cpuall.h $(srcdir)/../../opcodes/iq2000-desc.h eng.h
  29. SIM_EXTRA_CFLAGS =
  30. ALL_CPU_CFLAGS = -DHAVE_CPU_IQ2000BF -DHAVE_CPU_IQ10BF
  31. SIM_EXTRA_CLEAN = iq2000-clean
  32. # Some modules don't build cleanly yet.
  33. iq2000.o mloop.o: SIM_WERROR_CFLAGS =
  34. ## COMMON_POST_CONFIG_FRAG
  35. arch = iq2000
  36. arch.o: arch.c
  37. $(COMPILE) -UHAVE_CPU_IQ10BF $(srcdir)/arch.c
  38. $(POSTCOMPILE)
  39. # IQ2000 objs
  40. IQ2000BF_INCLUDE_DEPS = \
  41. $(CGEN_MAIN_CPU_DEPS) \
  42. cpu.h decode.h eng.h
  43. iq2000-clean:
  44. rm -f tmp-*
  45. rm -f stamp-arch stamp-cpu
  46. stamp-arch: $(CGEN_READ_SCM) $(CGEN_ARCH_SCM) $(CPU_DIR)/iq2000.cpu Makefile
  47. $(MAKE) cgen-arch $(CGEN_FLAGS_TO_PASS) mach=iq2000 \
  48. archfile=$(CPU_DIR)/iq2000.cpu \
  49. FLAGS="with-scache with-profile=fn"
  50. $(SILENCE) touch $@
  51. arch.h arch.c cpuall.h: $(CGEN_MAINT) stamp-arch
  52. @true
  53. stamp-cpu: $(CGEN_READ_SCM) $(CGEN_CPU_SCM) $(CGEN_DECODE_SCM) $(CPU_DIR)/iq2000.cpu Makefile
  54. $(MAKE) cgen-cpu-decode $(CGEN_FLAGS_TO_PASS) \
  55. cpu=iq2000bf mach=iq2000 \
  56. archfile=$(CPU_DIR)/iq2000.cpu \
  57. FLAGS="with-scache with-profile=fn" \
  58. EXTRAFILES="$(CGEN_CPU_SEM) $(CGEN_CPU_SEMSW)"
  59. $(SILENCE) touch $@
  60. cpu.h sem.c sem-switch.c model.c decode.c decode.h: $(CGEN_MAINT) stamp-cpu
  61. @true