source: rtems/scripts/gdb/Makefile.am @ b9a7287e

4.104.114.84.95
Last change on this file since b9a7287e was b9a7287e, checked in by Joel Sherrill <joel.sherrill@…>, on 03/14/01 at 19:43:57

2001-03-14 Joel Sherrill <joel@…>

  • gdb/Makefile.am, mkgdbspec.in: Added mipstx39-rtems configuration to gdb since this includes the JMR3904 simulator.
  • Property mode set to 100644
File size: 2.5 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7MKGDBSPEC = $(SHELL) $(top_builddir)/mkgdbspec
8
9SUBPACKAGES = gdb.add base-gdb.add target-gdb.add
10
11gdb.spec.in: $(SUBPACKAGES)
12        cat $^ > $@
13CLEANFILES += gdb.spec.in
14
15MKGDBSPEC_DEPS = $(top_builddir)/mkgdbspec gdb.spec.in \
16    $(top_builddir)/setup.cache
17
18arm-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
19        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . arm-rtems
20
21c4x-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
22        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . c4x-rtems
23
24h8300-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
25        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . h8300-rtems
26
27hppa1.1-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
28        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . hppa1.1-rtems
29
30i386-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
31        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . i386-rtems
32
33i960-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
34        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . i960-rtems
35
36m68k-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
37        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtems
38
39m68k-rtemself-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
40        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtemself
41
42mips64orion-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
43        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . mips64orion-rtems
44
45mips-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
46        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . mips-rtems
47
48mipstx39-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
49        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . mipstx39-rtems
50
51powerpc-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
52        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . powerpc-rtems
53
54sh-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
55        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtems
56
57sh-rtemself-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
58        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtemself
59
60sparc-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
61        $(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems
62
63RPM_SPECS_DATA = \
64    arm-rtems-$(GDBVERS).spec c4x-rtems-$(GDBVERS).spec \
65    h8300-rtems-$(GDBVERS).spec hppa1.1-rtems-$(GDBVERS).spec  \
66    i386-rtems-$(GDBVERS).spec i960-rtems-$(GDBVERS).spec \
67    m68k-rtems-$(GDBVERS).spec mips-rtems-$(GDBVERS).spec \
68    mipstx39-rtems-$(GDBVERS).spec mips64orion-rtems-$(GDBVERS).spec \
69    powerpc-rtems-$(GDBVERS).spec sh-rtems-$(GDBVERS).spec \
70    sh-rtemself-$(GDBVERS).spec sparc-rtems-$(GDBVERS).spec
71
72CLEANFILES += $(RPM_SPECS_DATA)
73
74EXTRA_DIST = $(SUBPACKAGES)
75
76include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.