2004-01-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* configure.ac: Add AM_CONDITIONAL(HAS_FPSP).
	* wrapup/Makefile.am: Reflect changes to libcpu.
This commit is contained in:
Ralf Corsepius
2004-01-20 03:03:28 +00:00
parent b04a2b3c20
commit d8a2c36f9c
3 changed files with 13 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2004-01-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Add AM_CONDITIONAL(HAS_FPSP).
* wrapup/Makefile.am: Reflect changes to libcpu.
2004-01-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.

View File

@@ -19,6 +19,7 @@ RTEMS_CHECK_NETWORKING
RTEMS_CONFIG_BUILD_SUBDIRS(tools)
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
AM_CONDITIONAL(HAS_FPSP,[test "$RTEMS_CPU_MODEL" = "m68040"])
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile

View File

@@ -11,10 +11,13 @@ BSP_PIECES = startup clock console timer tod $(NETWORKING_DRIVER)
# bummer; have to use $foreach since % pattern subst rules only replace 1x
OBJS = $(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/*.$(OBJEXT)) \
$(wildcard ../consolex/$(ARCH)/consolex.rel) $(wildcard \
../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/*.$(OBJEXT)) \
$(wildcard \
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
$(wildcard ../consolex/$(ARCH)/consolex.rel) \
../../../../libcpu/$(RTEMS_CPU)/shared/cache$(LIB_VARIANT).rel \
../../../../libcpu/$(RTEMS_CPU)/shared/misc$(LIB_VARIANT).rel
if HAS_FPSP
OBJS += ../../../../libcpu/m68k/@RTEMS_CPU_MODEL@/fpsp$(LIB_VARIANT).rel
endif
include $(top_srcdir)/../../../../automake/compile.am
include $(top_srcdir)/../../../../automake/lib.am