forked from Imagelibrary/rtems
* Makefile.am, configure.ac: Split out bsp_cleanup() and bsp_get_work_area() into their own files. * startup/bspclean.c, startup/bspgetworkarea.c, startup/bspstart.c: New files. * startup/start.c: Removed.
33 lines
709 B
Plaintext
33 lines
709 B
Plaintext
##
|
|
## $Id$
|
|
##
|
|
|
|
AC_PREREQ(2.60)
|
|
AC_INIT([rtems-c-src-lib-libbsp-arm-nds],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
|
|
AC_CONFIG_SRCDIR([bsp_specs])
|
|
RTEMS_TOP(../../../../../..)
|
|
|
|
RTEMS_CANONICAL_TARGET_CPU
|
|
AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.10])
|
|
RTEMS_BSP_CONFIGURE
|
|
|
|
RTEMS_PROG_CC_FOR_TARGET([-fasm])
|
|
RTEMS_CANONICALIZE_TOOLS
|
|
RTEMS_CHECK_TOOL(OBJCOPY,objcopy,:)
|
|
RTEMS_PROG_CCAS
|
|
|
|
RTEMS_CHECK_NETWORKING
|
|
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
|
|
|
|
RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
|
|
|
|
RTEMS_CONFIG_BUILD_SUBDIRS(tools)
|
|
|
|
## $srcdir/mk_libnds.sh $srcdir
|
|
|
|
RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
|
|
|
|
# Explicitly list all Makefiles here
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|