source: rtems/c/src/lib/configure.in @ 0dd1d44

4.104.114.84.95
Last change on this file since 0dd1d44 was 1d9a2fc, checked in by Joel Sherrill <joel.sherrill@…>, on 11/29/99 at 15:45:11

Patch rtems-rc-19991123-rc-0.diff from Ralf Corsepius <corsepiu@…>
which (among other things) converted the mptests to automake.

SUB_DIRS was used instead of SUBDIRS in some Makefile.ins
(apparently a leftover from moving the start* directories)

Addtional major bugs:

  • psxtests/include was empty (incomplete psxtests changes).
  • bogus handling of *.scn in itrontests (screens/sptests vs. screens/itrontests installation dirs)

In addition I have added a few more changes (I couldn't resist)

  • automake support for itrontests
  • OPERATION_COUNT support in tmitrontests/
  • automake support for tmitrontests
  • automake suppport for mptests
  • Some (minor) corrections to several configure.in/Makefile.ams

=> c/src/tests/ is completly under automake control, now.
=> we could start to sort out the structural issues with c/src/tests

(tests/support, stubdr, tools, get "make dist" working)

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[eb299afc]1dnl Process this file with autoconf to produce a configure script.
2dnl
[3ac8e590]3dnl $Id$
[eb299afc]4
5AC_PREREQ(2.13)
6AC_INIT(libbsp)
7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
[7e642ba]11AM_INIT_AUTOMAKE(rtems-c-src-lib,$RTEMS_VERSION,no)
[eb299afc]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
31dnl if this is an i386, does gas have good code16 support?
32RTEMS_I386_GAS_CODE16
33AM_CONDITIONAL(RTEMS_GAS_CODE16,test "$RTEMS_GAS_CODE16" = "yes");
34
35RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
[1896a650]36RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
[3a8915e]37RTEMS_CHECK_NETWORKING(RTEMS_BSP)
[eb299afc]38
39AM_CONDITIONAL(UNIX,test "$RTEMS_CPU" = "unix")
[e1d8abb]40
[eb299afc]41# find all the CPU dependent library Makefiles
[e1d8abb]42AC_CONFIG_SUBDIRS(libcpu)
43AC_CONFIG_SUBDIRS(libbsp)
[eb299afc]44
45RTEMS_ENABLE_HWAPI
46if test "$RTEMS_HAS_HWAPI" = "yes"; then
[e1d8abb]47  if test -d "${srcdir}/libhwapi"; then
48    cfg_subdirs="$cfg_subdirs libhwapi"
[eb299afc]49  fi
[e1d8abb]50  LIBHWAPI="libhwapi"
[eb299afc]51fi
[e1d8abb]52AC_SUBST(LIBHWAPI)
[eb299afc]53
[e1d8abb]54AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
55
56AC_CONFIG_SUBDIRS($cfg_subdirs)
[eb299afc]57
[e1d8abb]58PROJECT_INCLUDE="\$(PROJECT_ROOT)/$RTEMS_BSP/lib/include"
59AC_SUBST(PROJECT_INCLUDE)
[eb299afc]60
61# try to explicitly list a Makefile here
62AC_OUTPUT(
63Makefile
64include/Makefile
[e1d8abb]65include/sys/Makefile
66include/motorola/Makefile
67include/zilog/Makefile
[ce18601a]68libc/Makefile)
Note: See TracBrowser for help on using the repository browser.