source: rtems/c/src/configure.in @ 17978a1

4.104.114.84.95
Last change on this file since 17978a1 was 0efa9f0, checked in by Joel Sherrill <joel.sherrill@…>, on 10/04/99 at 18:53:31

Patch from Ralf Corsepius <corsepiu@…> to make fix bug
where wrapup left pieces out of the librtemsall.a.

  • Property mode set to 100644
File size: 852 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl  $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(exec)
7RTEMS_TOP(../..)
8AC_CONFIG_AUX_DIR(../..)
9
10RTEMS_ENABLE_CXX
11RTEMS_ENABLE_NETWORKING
12
13RTEMS_CANONICAL_TARGET_CPU
14RTEMS_CANONICAL_HOST
15
16AM_INIT_AUTOMAKE(rtems-c-src,$RTEMS_VERSION,no)
17AM_MAINTAINER_MODE
18
19RTEMS_ENV_RTEMSBSP
20RTEMS_CHECK_CPU
21RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
22
23RTEMS_CHECK_NETWORKING(RTEMS_BSP)
24
25## Note: the order of the directories below is essential
26AC_CONFIG_SUBDIRS(make)
27AC_CONFIG_SUBDIRS(exec)
28AC_CONFIG_SUBDIRS(lib)
29if test "$HAS_NETWORKING" = "yes"; then
30cfg_subdirs="libnetworking librpc"
31fi
32if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
33cfg_subdirs="$cfg_subdirs librtems++";
34fi
35AC_CONFIG_SUBDIRS($cfg_subdirs)
36AC_SUBST(cfg_subdirs)
37AC_CONFIG_SUBDIRS(tests)
38
39RTEMS_PROJECT_ROOT
40
41AC_OUTPUT(
42Makefile
43wrapup/Makefile
44)
Note: See TracBrowser for help on using the repository browser.