source: rtems/scripts/gdb/Makefile.am @ 491b8b2e

4.104.114.84.95
Last change on this file since 491b8b2e was b601e1a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/30/03 at 10:21:40

2003-01-30 Ralf Corsepius <corsepiu@…>

  • binutils/mkspec.in: New.
  • binutils/.cvsignore: Add mkspec.
  • mkbinutilspec.in: Remove.
  • gdb/Makefile.am: Depend on mkspec.
  • binutils/binutils.add: Add @exe_ext@ to c++filt. Add %_defaultbuildroot.
  • configure.ac: Reflect changes above.
  • Property mode set to 100644
File size: 2.6 KB
Line 
1##
2## $Id$
3##
4
5MKSPEC = $(SHELL) ./mkspec
6
7SUBPACKAGES = gdb.add base-gdb.add target-gdb.add
8
9noinst_DATA = gdb.spec.in
10
11gdb.spec.in: $(SUBPACKAGES)
12        cat $^ > $@
13CLEANFILES = gdb.spec.in
14
15MKGDBSPEC_DEPS = mkspec gdb.spec.in \
16    $(top_builddir)/setup.cache
17
18arm-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
19        $(MKSPEC) -cfg $(top_builddir)/setup.cache arm-rtems > $@
20
21c4x-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
22        $(MKSPEC) -cfg $(top_builddir)/setup.cache c4x-rtems > $@
23
24h8300-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
25        $(MKSPEC) -cfg $(top_builddir)/setup.cache h8300-rtems > $@
26
27hppa1.1-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
28        $(MKSPEC) -cfg $(top_builddir)/setup.cache hppa1.1-rtems > $@
29
30i386-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
31        $(MKSPEC) -cfg $(top_builddir)/setup.cache i386-rtems > $@
32
33i386-RTEMS-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
34        $(MKSPEC) -cfg $(top_builddir)/setup.cache i386-RTEMS > $@
35
36i960-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
37        $(MKSPEC) -cfg $(top_builddir)/setup.cache i960-rtems > $@
38
39m68k-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
40        $(MKSPEC) -cfg $(top_builddir)/setup.cache m68k-rtems > $@
41
42mips64orion-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
43        $(MKSPEC) -cfg $(top_builddir)/setup.cache mips64orion-rtems > $@
44
45mips-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
46        $(MKSPEC) -cfg $(top_builddir)/setup.cache mips-rtems > $@
47
48mipstx39-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
49        $(MKSPEC) -cfg $(top_builddir)/setup.cache mipstx39-rtems > $@
50
51powerpc-RTEMS-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
52        $(MKSPEC) -cfg $(top_builddir)/setup.cache powerpc-RTEMS > $@
53
54powerpc-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
55        $(MKSPEC) -cfg $(top_builddir)/setup.cache powerpc-rtems > $@
56
57sh-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
58        $(MKSPEC) -cfg $(top_builddir)/setup.cache sh-rtems > $@
59
60sh-rtemself-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
61        $(MKSPEC) -cfg $(top_builddir)/setup.cache sh-rtemself > $@
62
63sparc-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
64        $(MKSPEC) -cfg $(top_builddir)/setup.cache sparc-rtems > $@
65
66RPM_SPECS_DATA = \
67    arm-rtems-$(GDBVERS).spec c4x-rtems-$(GDBVERS).spec \
68    h8300-rtems-$(GDBVERS).spec hppa1.1-rtems-$(GDBVERS).spec  \
69    i386-rtems-$(GDBVERS).spec i960-rtems-$(GDBVERS).spec \
70    m68k-rtems-$(GDBVERS).spec mips-rtems-$(GDBVERS).spec \
71    mipstx39-rtems-$(GDBVERS).spec mips64orion-rtems-$(GDBVERS).spec \
72    powerpc-rtems-$(GDBVERS).spec sh-rtems-$(GDBVERS).spec \
73    sh-rtemself-$(GDBVERS).spec sparc-rtems-$(GDBVERS).spec \
74    i386-RTEMS-$(GDBVERS).spec powerpc-RTEMS-$(GDBVERS).spec
75
76CLEANFILES += $(RPM_SPECS_DATA)
77
78EXTRA_DIST = $(SUBPACKAGES)
79
80include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.