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

4.104.114.84.95
Last change on this file since fb16fed 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
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
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)
36RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
37RTEMS_CHECK_NETWORKING(RTEMS_BSP)
38
39AM_CONDITIONAL(UNIX,test "$RTEMS_CPU" = "unix")
40
41# find all the CPU dependent library Makefiles
42AC_CONFIG_SUBDIRS(libcpu)
43AC_CONFIG_SUBDIRS(libbsp)
44
45RTEMS_ENABLE_HWAPI
46if test "$RTEMS_HAS_HWAPI" = "yes"; then
47  if test -d "${srcdir}/libhwapi"; then
48    cfg_subdirs="$cfg_subdirs libhwapi"
49  fi
50  LIBHWAPI="libhwapi"
51fi
52AC_SUBST(LIBHWAPI)
53
54AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
55
56AC_CONFIG_SUBDIRS($cfg_subdirs)
57
58PROJECT_INCLUDE="\$(PROJECT_ROOT)/$RTEMS_BSP/lib/include"
59AC_SUBST(PROJECT_INCLUDE)
60
61# try to explicitly list a Makefile here
62AC_OUTPUT(
63Makefile
64include/Makefile
65include/sys/Makefile
66include/motorola/Makefile
67include/zilog/Makefile
68libc/Makefile)
Note: See TracBrowser for help on using the repository browser.