mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 06:08:20 +00:00
* Makefile.am, configure.ac, autotools/autoconf-rtems.spec.in, autotools/automake-rtems.spec.in, binutils/Makefile.am, binutils/base-binutils.add, binutils/binutils.add, binutils/mkspec.in, binutils/target-binutils.add, common/common.add.in, cpukit/Makefile.am, gcc3newlib/Makefile.am, gcc3newlib/base-g77.add, gcc3newlib/base-gcc.add, gcc3newlib/base-gcj.add, gcc3newlib/base-gnat.add, gcc3newlib/gccnewlib.add, gcc3newlib/mkspec.in, gcc3newlib/target-c++.add, gcc3newlib/target-g77.add, gcc3newlib/target-gcc.add, gcc3newlib/target-gcj.add, gcc3newlib/target-gnat.add, gcc3newlib/target-objc.add, gccnewlib/Makefile.am, gdb/Makefile.am, rtems/Makefile.am, rtemsdoc/Makefile.am: Merger from rtems-4-6-branch. * common/common.am: New.
54 lines
1.8 KiB
Makefile
54 lines
1.8 KiB
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
include $(top_srcdir)/common/common.am
|
|
|
|
MKBSPSPEC = $(SHELL) $(top_builddir)/mkbspspec
|
|
|
|
MKBSPSPEC_DEPS = $(top_builddir)/mkbspspec rtems.spec.in \
|
|
$(top_builddir)/setup.cache
|
|
|
|
hppa1.1-rtems-simhppa-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
|
|
$(MKBSPSPEC) -cfg $(top_builddir)/setup.cache -o . hppa1.1-rtems simhppa
|
|
|
|
i386-rtems-pc386-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
|
|
$(MKBSPSPEC) -cfg $(top_builddir)/setup.cache -o . i386-rtems pc386
|
|
|
|
i960-rtems-cvme961-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
|
|
$(MKBSPSPEC) -cfg $(top_builddir)/setup.cache -o . i960-rtems cvme961
|
|
|
|
m68k-rtems-gen68360-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
|
|
$(MKBSPSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtems gen68360
|
|
|
|
mips64orion-rtems-p4600-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
|
|
$(MKBSPSPEC) -cfg $(top_builddir)/setup.cache -o . mips64orion-rtems p4600
|
|
|
|
powerpc-rtems-mcp750-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
|
|
$(MKBSPSPEC) -cfg $(top_builddir)/setup.cache -o . powerpc-rtems mcp750
|
|
|
|
sh-rtems-gensh1-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
|
|
$(MKBSPSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtems gensh1
|
|
|
|
sh-rtemself-gensh1-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
|
|
$(MKBSPSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtemself gensh1
|
|
|
|
sparc-rtems-erc32-$(BSPVERS).spec: $(MKBSPSPEC_DEPS)
|
|
$(MKBSPSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems erc32
|
|
|
|
TEMPLATES = rtems.spec.in
|
|
|
|
RPM_SPECS_DATA = hppa1.1-rtems-simhppa-$(BSPVERS).spec \
|
|
i386-rtems-pc386-$(BSPVERS).spec i960-rtems-cvme961-$(BSPVERS).spec \
|
|
m68k-rtems-gen68360-$(BSPVERS).spec \
|
|
mips64orion-rtems-p4600-$(BSPVERS).spec \
|
|
powerpc-rtems-mcp750-$(BSPVERS).spec sh-rtems-gensh1-$(BSPVERS).spec \
|
|
sh-rtemself-gensh1-$(BSPVERS).spec sparc-rtems-erc32-$(BSPVERS).spec
|
|
|
|
noinst_DATA = $(TEMPLATES)
|
|
|
|
EXTRA_DIST = $(TEMPLATES)
|
|
|
|
CLEANFILES = $(RPM_SPECS_DATA)
|
|
include $(top_srcdir)/../automake/local.am
|