Makefile.in 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #### Makefile.in --- Makefile template for the RL78 simulator
  2. ### Copyright (C) 2008-2015 Free Software Foundation, Inc.
  3. ### Contributed by Red Hat, Inc.
  4. ###
  5. ### This file is part of the GNU simulators.
  6. ###
  7. ### The GNU simulators are free software; you can redistribute them and/or
  8. ### modify them under the terms of the GNU General Public License as
  9. ### published by the Free Software Foundation; either version 3 of the
  10. ### License, or (at your option) any later version.
  11. ###
  12. ### The GNU simulators are distributed in the hope that they will be
  13. ### useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. ### General Public License for more details.
  16. ###
  17. ### You should have received a copy of the GNU General Public License
  18. ### along with the GNU simulators; if not, see <http://www.gnu.org/licenses/>.
  19. ## COMMON_PRE_CONFIG_FRAG
  20. SIM_EXTRA_CFLAGS = -Wall
  21. SIM_RUN_OBJS = \
  22. main.o
  23. SIM_OBJS = \
  24. load.o \
  25. mem.o \
  26. cpu.o \
  27. rl78.o \
  28. gdb-if.o \
  29. trace.o
  30. ## COMMON_POST_CONFIG_FRAG
  31. arch = rl78
  32. err.o : err.h
  33. fpu.o : cpu.h fpu.h
  34. gdb-if.o : cpu.h mem.h load.h \
  35. $(srcdir)/../../include/gdb/callback.h \
  36. $(srcdir)/../../include/gdb/remote-sim.h \
  37. $(srcdir)/../../include/gdb/signals.h \
  38. $(srcdir)/../../include/gdb/sim-rl78.h
  39. load.o : ../../bfd/bfd.h cpu.h mem.h
  40. main.o : ../../bfd/bfd.h cpu.h mem.h load.h
  41. mem.o : mem.h cpu.h
  42. reg.o : cpu.h
  43. rl78.o : $(srcdir)/../../include/opcode/rl78.h cpu.h mem.h