forked from Imagelibrary/rtems
that contains:
* cleanups to configuration files
* A reworked gccnewlib.spec.in: I have reformated it for enhanced
readability and added more rtems-base packages. It now should be free of
any installation conflicts (If there still remain some, they should be
regarded as bugs).
* A fix to the bin2boot RTEMS_BSP issue (make RTEMS_BSP="pc386 pc486"
now works).
* removes libbsp/bare/wrapup
* Further cleanups
32 lines
602 B
Makefile
32 lines
602 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
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)
|