forked from Imagelibrary/rtems
2002-08-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Replace mcpu32 by mcpu32p conditional. * share/misc/Makefile.am: Fix AM_CPPFLAGS bug.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2002-08-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
|
* configure.ac: Replace mcpu32 by mcpu32p conditional.
|
||||||
|
* share/misc/Makefile.am: Fix AM_CPPFLAGS bug.
|
||||||
|
|
||||||
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* Per PR260 eliminate use of make-target-options. This impacted
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ AM_CONDITIONAL(m68040, test "$RTEMS_CPU_MODEL" = "m68040")
|
|||||||
|
|
||||||
AM_CONDITIONAL(mcf5206, test "$RTEMS_CPU_MODEL" = "mcf5206")
|
AM_CONDITIONAL(mcf5206, test "$RTEMS_CPU_MODEL" = "mcf5206")
|
||||||
|
|
||||||
AM_CONDITIONAL(mcpu32, test "$RTEMS_CPU_MODEL" = "mcpu32")
|
AM_CONDITIONAL(mcpu32p, test "$RTEMS_CPU_MODEL" = "mcpu32p")
|
||||||
|
|
||||||
case "$RTEMS_CPU_MODEL" in
|
case "$RTEMS_CPU_MODEL" in
|
||||||
mcf5206 ) AC_CONFIG_SUBDIRS([mcf5206]);;
|
mcf5206 ) AC_CONFIG_SUBDIRS([mcf5206]);;
|
||||||
|
|||||||
@@ -14,9 +14,11 @@ include $(top_srcdir)/../../../../../automake/lib.am
|
|||||||
|
|
||||||
# gcc doesn't recognize difference between the cpu32 and cpu32+ so we have to
|
# gcc doesn't recognize difference between the cpu32 and cpu32+ so we have to
|
||||||
if mcpu32p
|
if mcpu32p
|
||||||
AM_CPPFLAGS += -D__mcpu32p__
|
MCPU32P_CPPFLAGS = -D__mcpu32p__
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
AM_CPPFLAGS += $(MCPU32P_CPPFLAGS)
|
||||||
|
|
||||||
all-local: $(ARCH) $(OBJS)
|
all-local: $(ARCH) $(OBJS)
|
||||||
|
|
||||||
EXTRA_DIST = memcpy.c
|
EXTRA_DIST = memcpy.c
|
||||||
|
|||||||
Reference in New Issue
Block a user