source: rtems/scripts/binutils/Makefile.am @ 446a7486

Last change on this file since 446a7486 was 446a7486, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/28/03 at 23:43:10

2003-08-28 Ralf Corsepius <corsepiu@…>

  • common/commom.am: New.
  • Makefile.am: Remove TEMPLATES. Put setup.cache into CONFIG_STATUS_DEPENDENCIES instead of CONFIGURE_DEPENDENCIES.
  • configure.ac: Remove AC_PREFIX_DEFAULT.
  • binutils/Makefile.am: include common.am.
  • common/common.add.in: Use rtems.com gnats.
  • cpukit/Makefile.am: include common.am.
  • gcc3newlib/Makefile.am: include common.am.
  • gccnewlib/Makefile.am: include common.am.
  • gdb/Makefile.am: include common.am.
  • rtems/Makefile.am: include common.am.
  • rtemsdoc/Makefile.am: include common.am.
  • Property mode set to 100644
File size: 2.8 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/common/common.am
6
7MKBINUTILSSPEC = $(SHELL) ./mkspec
8
9SUBPACKAGES = header.add
10SUBPACKAGES += $(top_builddir)/common/common.add binutils.add
11SUBPACKAGES += $(top_builddir)/common/clean.add
12SUBPACKAGES += base-binutils.add target-binutils.add
13
14binutils.spec.in: $(SUBPACKAGES)
15        cat $^ > $@
16CLEANFILES = binutils.spec.in
17
18MKBINUTILSSPEC_DEPS = mkspec binutils.spec.in \
19    $(top_builddir)/setup.cache
20
21arm-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
22        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache arm-rtems > $@
23
24c4x-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
25        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache c4x-rtems > $@
26
27h8300-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
28        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache h8300-rtems > $@
29
30hppa1.1-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
31        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache hppa1.1-rtems > $@
32
33i386-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
34        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache i386-rtems > $@
35
36i960-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
37        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache i960-rtems > $@
38
39m68k-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
40        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache m68k-rtems > $@
41
42mips64orion-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
43        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache mips64orion-rtems > $@
44mips-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
45        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache mips-rtems > $@
46
47or32-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
48        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache or32-rtems > $@
49
50powerpc-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
51        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache powerpc-rtems > $@
52
53sh-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
54        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache sh-rtems > $@
55
56sh-rtemself-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
57        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache sh-rtemself > $@
58
59sparc-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
60        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache sparc-rtems > $@
61
62RPM_SPECS_DATA = \
63    arm-rtems-$(BINUTILSVERS).spec \
64    c4x-rtems-$(BINUTILSVERS).spec h8300-rtems-$(BINUTILSVERS).spec \
65    hppa1.1-rtems-$(BINUTILSVERS).spec \
66    i386-rtems-$(BINUTILSVERS).spec i960-rtems-$(BINUTILSVERS).spec \
67    m68k-rtems-$(BINUTILSVERS).spec \
68    mips-rtems-$(BINUTILSVERS).spec mips64orion-rtems-$(BINUTILSVERS).spec \
69    or32-rtems-$(BINUTILSVERS).spec \
70    powerpc-rtems-$(BINUTILSVERS).spec sh-rtems-$(BINUTILSVERS).spec \
71    sh-rtemself-$(BINUTILSVERS).spec sparc-rtems-$(BINUTILSVERS).spec
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.