source: rtems/scripts/binutils/Makefile.am @ 0671af6

4.104.114.84.95
Last change on this file since 0671af6 was 0671af6, checked in by Joel Sherrill <joel.sherrill@…>, on 09/24/01 at 18:30:27

2001-09-22 Ralf Corsepius <corsepiu@…>

  • gdb/Makefile.am, gccnewlib/Makefile.am, binutils/Makefile.am: Initially setup CLEANFILES using = instead of += to make automake-1.5 happy.
  • Property mode set to 100644
File size: 2.9 KB
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7MKBINUTILSSPEC = $(SHELL) $(top_builddir)/mkbinutilspec
8
9SUBPACKAGES = binutils.add \
10  base-binutils.add target-binutils.add
11
12binutils.spec.in: $(SUBPACKAGES)
13        cat $^ > $@
14CLEANFILES = binutils.spec.in
15
16MKBINUTILSSPEC_DEPS = $(top_builddir)/mkbinutilspec binutils.spec.in \
17    $(top_builddir)/setup.cache
18
19a29k-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
20        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . a29k-rtems
21
22arm-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
23        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . arm-rtems
24
25c4x-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
26        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . c4x-rtems
27
28h8300-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
29        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . h8300-rtems
30
31hppa1.1-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
32        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . hppa1.1-rtems
33
34i386-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
35        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . i386-rtems
36
37i960-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
38        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . i960-rtems
39
40m68k-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
41        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtems
42
43m68k-rtemself-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
44        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtemself
45
46mips64orion-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
47        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . mips64orion-rtems
48mips-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
49        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . mips-rtems
50
51powerpc-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
52        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . powerpc-rtems
53
54sh-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
55        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtems
56
57sh-rtemself-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
58        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtemself
59
60sparc-rtems-$(BINUTILSVERS).spec: $(MKBINUTILSSPEC_DEPS)
61        $(MKBINUTILSSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems
62
63RPM_SPECS_DATA = \
64    a29k-rtems-$(BINUTILSVERS).spec arm-rtems-$(BINUTILSVERS).spec \
65    c4x-rtems-$(BINUTILSVERS).spec h8300-rtems-$(BINUTILSVERS).spec \
66    hppa1.1-rtems-$(BINUTILSVERS).spec \
67    i386-rtems-$(BINUTILSVERS).spec i960-rtems-$(BINUTILSVERS).spec \
68    m68k-rtems-$(BINUTILSVERS).spec m68k-rtemself-$(BINUTILSVERS).spec \
69    mips-rtems-$(BINUTILSVERS).spec mips64orion-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.