mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-07 16:13:07 +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.
27 lines
612 B
Makefile
27 lines
612 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
MKGDBSPEC = $(SHELL) $(top_builddir)/mkgdbspec
|
|
|
|
MKGDBSPEC_DEPS = $(top_builddir)/mkgdbspec gdb.spec.in \
|
|
$(top_builddir)/setup.cache
|
|
|
|
powerpc-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . powerpc-rtems
|
|
|
|
sparc-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems
|
|
|
|
TEMPLATES = gdb.spec.in
|
|
|
|
RPM_SPECS_DATA = powerpc-rtems-$(GDBVERS).spec sparc-rtems-$(GDBVERS).spec
|
|
|
|
noinst_DATA = $(TEMPLATES)
|
|
|
|
EXTRA_DIST = $(TEMPLATES)
|
|
|
|
CLEANFILES = $(RPM_SPECS_DATA)
|
|
include $(top_srcdir)/../automake/local.am
|