source: rtems/scripts/cpukit/Makefile.am @ 084879d

4.104.114.84.95
Last change on this file since 084879d was 620c972, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/29/02 at 07:40:53

2002-07-29 Ralf Corsepius <corsepiu@…>

  • ChangeLog?: Fix 2002-07-22 ChangeLog? entry bogusly referring to Joel.
  • cpukit/Makefile.am: New.
  • cpukit/mkspec.in: New.
  • cpukit/rtems-cpukit.spec.in: New.
  • cpukit/.cvsignore: New.
  • configure.ac: Add cpukit. Add RTEMS_TOP to pickup _RTEMS_VERSION (required by cpukit).
  • Makefile.am: Add cpukit. Add ACLOCAL_AMFLAGS (required to pickup RTEMS_VERSION).
  • setup.def: Use %{_tmppath} as default for $rpm_build_root.
  • mkbinutilsspec.in: Use ',' as pattern delimiter in sed expression for $rpm_build_root.
  • mkgccnewlibspec.in: Use ',' as pattern delimiter in sed expression for $rpm_build_root.
  • mkgcc3newlibspec.in: Use ',' as pattern delimiter in sed expression for $rpm_build_root.
  • mkgdbspec.in: Use ',' as pattern delimiter in sed expression for $rpm_build_root.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1##
2## $Id$
3##
4
5
6MKSPEC = $(SHELL) ./mkspec
7
8MKSPEC_DEPS = mkspec rtems-cpukit.spec.in \
9    $(top_builddir)/setup.cache
10
11c4x-rtems-cpukit.spec: $(MKSPEC_DEPS)
12        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . c4x-rtems > $@
13RPM_SPECS_DATA = c4x-rtems-cpukit.spec
14
15hppa1.1-rtems-cpukit.spec: $(MKSPEC_DEPS)
16        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . hppa1.1-rtems > $@
17RPM_SPECS_DATA += hppa1.1-rtems-cpukit.spec
18
19h8300-rtems-cpukit.spec: $(MKSPEC_DEPS)
20        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . h8300-rtems > $@
21RPM_SPECS_DATA += h8300-rtems-cpukit.spec
22
23i386-rtems-cpukit.spec: $(MKSPEC_DEPS)
24        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . i386-rtems > $@
25RPM_SPECS_DATA += i386-rtems-cpukit.spec
26
27i960-rtems-cpukit.spec: $(MKSPEC_DEPS)
28        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . i960-rtems > $@
29RPM_SPECS_DATA += i960-rtems-cpukit.spec
30
31m68k-rtems-cpukit.spec: $(MKSPEC_DEPS)
32        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtems > $@
33RPM_SPECS_DATA += m68k-rtems-cpukit.spec
34
35mips64orion-rtems-cpukit.spec: $(MKSPEC_DEPS)
36        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . mips64orion-rtems > $@
37RPM_SPECS_DATA += mips64orion-rtems-cpukit.spec
38
39mips-rtems-cpukit.spec: $(MKSPEC_DEPS)
40        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . mips-rtems > $@
41RPM_SPECS_DATA += mips-rtems-cpukit.spec
42
43powerpc-rtems-cpukit.spec: $(MKSPEC_DEPS)
44        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . powerpc-rtems > $@
45RPM_SPECS_DATA += powerpc-rtems-cpukit.spec
46
47sh-rtems-cpukit.spec: $(MKSPEC_DEPS)
48        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtems > $@
49RPM_SPECS_DATA += sh-rtems-cpukit.spec
50
51sh-rtemself-cpukit.spec: $(MKSPEC_DEPS)
52        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtemself > $@
53RPM_SPECS_DATA += sh-rtemself-cpukit.spec
54
55sparc-rtems-cpukit.spec: $(MKSPEC_DEPS)
56        $(MKSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems > $@
57RPM_SPECS_DATA += sparc-rtems-cpukit.spec
58
59TEMPLATES = rtems-cpukit.spec.in
60
61noinst_DATA = $(TEMPLATES)
62
63EXTRA_DIST = $(TEMPLATES)
64
65CLEANFILES = $(RPM_SPECS_DATA)
66include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.