2000-10-18 Joel Sherrill <joel@OARcorp.com>

* Makefile.am: Corrected condition CPU model selection so
	multilib'ing and bare BSP works.
This commit is contained in:
Joel Sherrill
2000-10-18 13:03:14 +00:00
parent e3250b3943
commit 3b5dc96476
2 changed files with 18 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2000-10-18 Joel Sherrill <joel@OARcorp.com>
* Makefile.am: Corrected condition CPU model selection so
multilib'ing and bare BSP works.
2000-09-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* i960ca/Makefile.am, i960ka/Makefile.am, i960rp/Makefile.am:

View File

@@ -5,7 +5,19 @@
AUTOMAKE_OPTIONS = foreign 1.4
ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
SUBDIRS = include @RTEMS_CPU_MODEL@
if i960ca
CPU_SUBDIR = i960ca
endif
if i960ka
CPU_SUBDIR = i960ka
endif
if i960rp
CPU_SUBDIR = i960rp
endif
SUBDIRS = include $(CPU_SUBDIR)
include $(top_srcdir)/../../../../../automake/subdirs.am
include $(top_srcdir)/../../../../../automake/local.am