summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/score603e/configure.in
blob: 0b6351347dea7f1261d967ca80fd9f7711a39472 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
dnl Process this file with autoconf to produce a configure script.
dnl
dnl $Id$

AC_PREREQ(2.13)
AC_INIT(bsp_specs)
RTEMS_TOP(../../../../../..)
AC_CONFIG_AUX_DIR(../../../../../..)

RTEMS_CANONICAL_TARGET_CPU
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AM_MAINTAINER_MODE

RTEMS_ENABLE_MULTIPROCESSING
RTEMS_ENABLE_NETWORKING
RTEMS_ENABLE_LIBCDIR

RTEMS_ENV_RTEMSBSP

RTEMS_CHECK_CPU
RTEMS_CANONICAL_HOST

RTEMS_PROJECT_ROOT

dnl check target cc
RTEMS_PROG_CC_FOR_TARGET
RTEMS_CANONICALIZE_TOOLS

RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
RTEMS_CHECK_NETWORKING(RTEMS_BSP)

# find all the Makefiles for the BSPs
RTEMS_CHECK_MAKEFILE(.)

# HACK: sed out bsp-tools from makefiles
t="tools"
if test -d "$srcdir/$t"; then
  bsptools_cfgdirs="$bsptools_cfgdirs $t"
  makefiles=`echo "$makefiles" | sed -e "s%.*$t/.*Makefile%%g"`
fi

if test "$HAS_MP" = "yes"; then
:
else
  # HACK: sed out shmsupp/Makefile from makefiles
  t="shmsupp"
  makefiles=`echo "$makefiles" | sed -e "s%.*$t/.*Makefile%%g"`
fi
AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")

AC_CONFIG_SUBDIRS($bsptools_cfgdirs)

# try to explicitly list a Makefile here 
AC_OUTPUT( 
$makefiles)