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
64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
MKGDBSPEC = $(SHELL) $(top_builddir)/mkgdbspec
|
|
|
|
MKGDBSPEC_DEPS = \
|
|
$(top_builddir)/mkgdbspec gdb.spec.in $(top_builddir)/setup.cache
|
|
|
|
hppa1.1-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . hppa1.1-rtems
|
|
|
|
i386-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . i386-rtems
|
|
|
|
i960-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . i960-rtems
|
|
|
|
m68k-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtems
|
|
|
|
m68k-rtemself-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . m68k-rtemself
|
|
|
|
mips64orion-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . mips64orion-rtems
|
|
|
|
powerpc-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . powerpc-rtems
|
|
|
|
sh-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtems
|
|
|
|
sh-rtemself-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . sh-rtemself
|
|
|
|
sparc-rtems-$(GDBVERS).spec: $(MKGDBSPEC_DEPS)
|
|
$(MKGDBSPEC) -cfg $(top_builddir)/setup.cache -o . sparc-rtems
|
|
|
|
TEMPLATES = \
|
|
gdb.spec.in
|
|
|
|
RPM_SPECS_DATA = \
|
|
hppa1.1-rtems-$(GDBVERS).spec \
|
|
i386-rtems-$(GDBVERS).spec \
|
|
i960-rtems-$(GDBVERS).spec \
|
|
m68k-rtems-$(GDBVERS).spec \
|
|
m68k-rtemself-$(GDBVERS).spec \
|
|
mips64orion-rtems-$(GDBVERS).spec \
|
|
powerpc-rtems-$(GDBVERS).spec \
|
|
sh-rtems-$(GDBVERS).spec \
|
|
sh-rtemself-$(GDBVERS).spec \
|
|
sparc-rtems-$(GDBVERS).spec
|
|
|
|
noinst_DATA = \
|
|
$(TEMPLATES)
|
|
|
|
EXTRA_DIST = \
|
|
$(TEMPLATES)
|
|
|
|
CLEANFILES = $(RPM_SPECS_DATA)
|