mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-08 00:23:14 +00:00
* configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]). * binutils/Makefile.am: Remove AUTOMAKE_OPTIONS. * Makefile.am: Remove AUTOMAKE_OPTIONS. * gdb/Makefile.am: Remove AUTOMAKE_OPTIONS. * gnatnewlib/Makefile.am: Remove AUTOMAKE_OPTIONS.
31 lines
899 B
Makefile
31 lines
899 B
Makefile
## $Id$
|
|
|
|
|
|
MKGNATNEWLIBSPEC = $(SHELL) $(top_builddir)/mkgnatnewlibspec
|
|
|
|
MKGNATNEWLIBSPEC_DEPS = $(top_builddir)/mkgnatnewlibspec gnatnewlib.spec.in \
|
|
$(top_builddir)/setup.cache
|
|
|
|
i386-rtemscoff-$(GNATNEWLIBVERS).spec: $(MKGNATNEWLIBSPEC_DEPS)
|
|
$(MKGNATNEWLIBSPEC) -cfg $(top_builddir)/setup.cache -o . i386-rtemscoff
|
|
|
|
powerpc-rtems-$(GNATNEWLIBVERS).spec: $(MKGNATNEWLIBSPEC_DEPS)
|
|
$(MKGNATNEWLIBSPEC) -cfg $(top_builddir)/setup.cache -o . powerpc-rtems
|
|
|
|
sparc-rtems-$(GNATNEWLIBVERS).spec: $(MKGNATNEWLIBSPEC_DEPS)
|
|
$(MKGNATNEWLIBSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems
|
|
|
|
TEMPLATES = gnatnewlib.spec.in
|
|
|
|
RPM_SPECS_DATA = \
|
|
i386-rtemscoff-$(GNATNEWLIBVERS).spec \
|
|
powerpc-rtems-$(GNATNEWLIBVERS).spec \
|
|
sparc-rtems-$(GNATNEWLIBVERS).spec
|
|
|
|
noinst_DATA = $(TEMPLATES)
|
|
|
|
EXTRA_DIST = $(TEMPLATES)
|
|
|
|
CLEANFILES = $(RPM_SPECS_DATA)
|
|
include $(top_srcdir)/../automake/local.am
|