source: rtems/scripts/gdb/Makefile.am @ 620c972

4.104.114.84.95
Last change on this file since 620c972 was 3f60b2aa, checked in by Joel Sherrill <joel.sherrill@…>, on 04/16/02 at 23:43:23

2001-04-16 Joel Sherrill <joel@…>

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