source: rtems/scripts/gdb/Makefile.am @ 9c8ee7b

4.104.114.84.95
Last change on this file since 9c8ee7b was 9c8ee7b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/31/03 at 05:32:20

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

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