source: rtems/c/src/lib/configure.in @ bb18b95

4.104.114.84.95
Last change on this file since bb18b95 was 4c46630, checked in by Joel Sherrill <joel.sherrill@…>, on 01/31/00 at 15:15:10

Patch rtems-rc-20000118-1.diff from Ralf Corsepius <corsepiu@…>
that contains:

  • cleanups to configuration files
  • A reworked gccnewlib.spec.in: I have reformated it for enhanced readability and added more rtems-base packages. It now should be free of any installation conflicts (If there still remain some, they should be regarded as bugs).
  • A fix to the bin2boot RTEMS_BSP issue (make RTEMS_BSP="pc386 pc486" now works).
  • removes libbsp/bare/wrapup
  • Further cleanups
  • Property mode set to 100644
File size: 1.2 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(libbsp)
7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE(rtems-c-src-lib,$RTEMS_VERSION,no)
12AM_MAINTAINER_MODE
13
14RTEMS_ENABLE_MULTIPROCESSING
15RTEMS_ENABLE_NETWORKING
16RTEMS_ENABLE_LIBCDIR
17RTEMS_ENABLE_BARE
18RTEMS_ENABLE_HWAPI
19
20RTEMS_ENV_RTEMSBSP
21
22RTEMS_CHECK_CPU
23RTEMS_CANONICAL_HOST
24
25RTEMS_PROJECT_ROOT
26
27dnl check target cc
28RTEMS_PROG_CC_FOR_TARGET
29RTEMS_CANONICALIZE_TOOLS
30
31RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
32RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
33RTEMS_CHECK_NETWORKING(RTEMS_BSP)
34
35AM_CONDITIONAL(UNIX,test "$RTEMS_CPU" = "unix")
36
37# find all the CPU dependent library Makefiles
38AC_CONFIG_SUBDIRS(libcpu)
39AC_CONFIG_SUBDIRS(libbsp)
40
41RTEMS_ENABLE_HWAPI
42if test "$RTEMS_HAS_HWAPI" = "yes"; then
43  if test -d "${srcdir}/libhwapi"; then
44    cfg_subdirs="$cfg_subdirs libhwapi"
45  fi
46  LIBHWAPI="libhwapi"
47fi
48AC_SUBST(LIBHWAPI)
49
50AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
51
52AC_CONFIG_SUBDIRS($cfg_subdirs)
53
54# try to explicitly list a Makefile here
55AC_OUTPUT(
56Makefile
57include/Makefile
58include/sys/Makefile
59include/motorola/Makefile
60include/zilog/Makefile
61libc/Makefile)
Note: See TracBrowser for help on using the repository browser.