source: rtems/c/src/lib/libbsp/powerpc/eth_comm/configure.in @ 8fbdf07

4.104.114.84.95
Last change on this file since 8fbdf07 was 362ec23e, checked in by Joel Sherrill <joel.sherrill@…>, on 01/10/00 at 18:10:59

Patch rtems-rc-20000104-12.diff from Ralf Corsepius <corsepiu@…>
which converts the PowerPC BSPs to configuration and more automake.

  • Besides adding partial automake support, rsp converting all powerpc BSPs to make them compliant to the new configuration scheme, this patch attempts to fix several configuration bugs in powerpc related Makefiles.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(bsp_specs)
7RTEMS_TOP(../../../../../..)
8AC_CONFIG_AUX_DIR(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AC_PROG_MAKE_SET
12AC_PROG_INSTALL
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_MULTIPROCESSING
16RTEMS_ENABLE_NETWORKING
17RTEMS_ENABLE_LIBCDIR
18
19RTEMS_ENV_RTEMSBSP
20
21RTEMS_CHECK_CPU
22RTEMS_CANONICAL_HOST
23
24RTEMS_PROJECT_ROOT
25
26dnl check target cc
27RTEMS_PROG_CC_FOR_TARGET
28RTEMS_CANONICALIZE_TOOLS
29
30RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
31RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
32RTEMS_CHECK_NETWORKING(RTEMS_BSP)
33
34# find all the Makefiles for the BSPs
35RTEMS_CHECK_MAKEFILE(.)
36
37# HACK: sed out bsp-tools from makefiles
38t="tools"
39if test -d "$srcdir/$t"; then
40  bsptools_cfgdirs="$bsptools_cfgdirs $t"
41  makefiles=`echo "$makefiles" | sed -e "s%.*$t/.*Makefile%%g"`
42fi
43
44if test "$HAS_MP" = "yes"; then
45:
46else
47  # HACK: sed out shmsupp/Makefile from makefiles
48  t="shmsupp"
49  makefiles=`echo "$makefiles" | sed -e "s%.*$t/.*Makefile%%g"`
50fi
51AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
52
53AC_CONFIG_SUBDIRS($bsptools_cfgdirs)
54
55# try to explicitly list a Makefile here
56AC_OUTPUT(
57$makefiles)
Note: See TracBrowser for help on using the repository browser.