forked from Imagelibrary/rtems
that contains: * Removes remaining (now illegal) references to $(SRC) from a couple of Makefile.ams * Removes duplicate AC_CONFIG_SUBDIRS macro from c/configure.in * Moves ENABLE_LIBCDIR into RTEMS_PROG_C[C|XX]_FOR_TARGET (hides LIBCDIR from most configure scripts, i.e. LIBCDIR becomes less visible) * Adds RTEMS_PROG_C[C|XX]_FOR_TARGET and RTEMS_CANONICALIZE_TOOLS to libbsp/*/configure.ins (A minor bug in previous implementations, which only has an impact when switching to GNU/Cygnus canonicalization) * Cleans up several bogus comments. * Removes MKLIB * Switches the version number to 4.5.0 (for testing version number handling)
74 lines
1.7 KiB
Plaintext
74 lines
1.7 KiB
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
dnl
|
|
dnl $Id$
|
|
|
|
AC_PREREQ(2.13)
|
|
AC_INIT(mpc6xx)
|
|
RTEMS_TOP(../../../../..)
|
|
AC_CONFIG_AUX_DIR(../../../../..)
|
|
|
|
RTEMS_CANONICAL_TARGET_CPU
|
|
|
|
AM_INIT_AUTOMAKE(rtems-c-src-lib-libcpu-powerpc,$RTEMS_VERSION,no)
|
|
AM_MAINTAINER_MODE
|
|
|
|
RTEMS_ENABLE_BARE
|
|
RTEMS_ENV_RTEMSBSP
|
|
|
|
RTEMS_CHECK_CPU
|
|
RTEMS_CANONICAL_HOST
|
|
|
|
RTEMS_PROJECT_ROOT
|
|
|
|
RTEMS_PROG_CC_FOR_TARGET
|
|
RTEMS_CANONICALIZE_TOOLS
|
|
|
|
RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
|
|
RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
|
|
|
|
AM_CONDITIONAL(shared,
|
|
test "$RTEMS_CPU_MODEL" = "mpc750" \
|
|
|| test "$RTEMS_CPU_MODEL" = "mpc604" )
|
|
|
|
AM_CONDITIONAL(mpc505, test "$RTEMS_CPU_MODEL" = "mpc505")
|
|
AM_CONDITIONAL(mpc6xx, test "$RTEMS_CPU_MODEL" = "mpc6xx" \
|
|
|| test "$RTEMS_CPU_MODEL" = "mpc604" \
|
|
|| test "$RTEMS_CPU_MODEL" = "mpc750" )
|
|
AM_CONDITIONAL(mpc821, test "$RTEMS_CPU_MODEL" = "mpc821")
|
|
AM_CONDITIONAL(mpc860, test "$RTEMS_CPU_MODEL" = "mpc860")
|
|
AM_CONDITIONAL(ppc403, test "$RTEMS_CPU_MODEL" = "ppc403")
|
|
|
|
# Explicitly list all Makefiles here
|
|
AC_OUTPUT(
|
|
Makefile
|
|
mpc505/Makefile
|
|
mpc505/timer/Makefile
|
|
mpc505/vectors/Makefile
|
|
mpc821/Makefile
|
|
mpc821/clock/Makefile
|
|
mpc821/console-generic/Makefile
|
|
mpc821/include/Makefile
|
|
mpc821/timer/Makefile
|
|
mpc821/vectors/Makefile
|
|
mpc860/Makefile
|
|
mpc860/clock/Makefile
|
|
mpc860/console-generic/Makefile
|
|
mpc860/include/Makefile
|
|
mpc860/timer/Makefile
|
|
mpc860/vectors/Makefile
|
|
ppc403/Makefile
|
|
ppc403/clock/Makefile
|
|
ppc403/console/Makefile
|
|
ppc403/ictrl/Makefile
|
|
ppc403/timer/Makefile
|
|
ppc403/vectors/Makefile
|
|
mpc6xx/Makefile
|
|
mpc6xx/clock/Makefile
|
|
mpc6xx/timer/Makefile
|
|
mpc6xx/exceptions/Makefile
|
|
mpc6xx/mmu/Makefile
|
|
mpc6xx/timer/Makefile
|
|
mpc6xx/wrapup/Makefile
|
|
shared/Makefile
|
|
wrapup/Makefile)
|