source: rtems/scripts/binutils/Makefile.am @ 99f97d3f

Last change on this file since 99f97d3f was ab591073, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/31/03 at 07:29:27

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

  • common/common.add.in: Add Vendor, Distribution, BuildRoot?.
  • binutils/Makefile.am: Fix path to clean.add.
  • binutils/binutils.add: Remove BuildRoot?.
  • cpukit/Makefile.am: Use $(top_builddir)/common/common.add, $(top_builddir)/common/clean.add, header.add. Generate rtems-cpukit.spec.in.
  • cpukit/header.add: New.
  • cpukit/rtems-cpukit.spec.in: Remove.
  • cpukit/rtems-cpukit.add: New.
  • gccnewlib/gccnewlib.add: Remove Buildroot.
  • gdb/gdb.add: Remove Buildroot.
  • rtemsdoc/rtemsdoc.add: Remove BuildRoot?.
  • Property mode set to 100644
File size: 2.7 KB
Line 
1##
2## $Id$
3##
4
5
6MKBINUTILSSPEC = $(SHELL) ./mkspec
7
8SUBPACKAGES = header.add
9SUBPACKAGES += $(top_builddir)/common/common.add binutils.add
10SUBPACKAGES += $(top_builddir)/common/clean.add
11SUBPACKAGES += base-binutils.add target-binutils.add
12
13binutils.spec.in: $(SUBPACKAGES)
14        cat $^ > $@
15CLEANFILES = binutils.spec.in
16
17MKBINUTILSSPEC_DEPS = mkspec binutils.spec.in \
18    $(top_builddir)/setup.cache
19
20arm-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
21        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache arm-rtems > $@
22
23c4x-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
24        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache c4x-rtems > $@
25
26h8300-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
27        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache h8300-rtems > $@
28
29hppa1.1-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
30        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache hppa1.1-rtems > $@
31
32i386-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
33        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache i386-rtems > $@
34
35i960-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
36        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache i960-rtems > $@
37
38m68k-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
39        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache m68k-rtems > $@
40
41mips64orion-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
42        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache mips64orion-rtems > $@
43mips-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
44        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache mips-rtems > $@
45
46or32-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
47        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache or32-rtems > $@
48
49powerpc-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
50        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache powerpc-rtems > $@
51
52sh-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
53        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache sh-rtems > $@
54
55sh-rtemself-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
56        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache sh-rtemself > $@
57
58sparc-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
59        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache sparc-rtems > $@
60
61RPM_SPECS_DATA = \
62    arm-rtems-$(BINUTILSVERS).spec \
63    c4x-rtems-$(BINUTILSVERS).spec h8300-rtems-$(BINUTILSVERS).spec \
64    hppa1.1-rtems-$(BINUTILSVERS).spec \
65    i386-rtems-$(BINUTILSVERS).spec i960-rtems-$(BINUTILSVERS).spec \
66    m68k-rtems-$(BINUTILSVERS).spec \
67    mips-rtems-$(BINUTILSVERS).spec mips64orion-rtems-$(BINUTILSVERS).spec \
68    or32-rtems-$(BINUTILSVERS).spec \
69    powerpc-rtems-$(BINUTILSVERS).spec sh-rtems-$(BINUTILSVERS).spec \
70    sh-rtemself-$(BINUTILSVERS).spec sparc-rtems-$(BINUTILSVERS).spec
71CLEANFILES += $(RPM_SPECS_DATA)
72
73EXTRA_DIST = $(SUBPACKAGES)
74
75include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.