source: rtems/cpukit/libmisc/configure.ac @ 5e622a9

4.104.114.84.95
Last change on this file since 5e622a9 was 5e622a9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/12/02 at 03:08:54

2002-12-12 Ralf Corsepius <corsepiu@…>

Moving libmisc from rtems/c/src to rtems/cpukit.

  • Makefile.am: Reflect new path.
  • configure.ac: Reflect new path. Use RTEMS_ENV_RTEMSCPU instead of RTEMS_ENV_RTEMSBSP. Remove RTEMS_PROJECT_ROOT.
  • capture/Makefile.am: Reflect new path. Remove OBJS from all-local.
  • cpuuse/Makefile.am: Ditto.
  • devnull/Makefile.am: Ditto.
  • dummy/Makefile.am: Ditto.
  • dumpbuf/Makefile.am: Ditto.
  • monitor/Makefile.am: Ditto.
  • mw-fb/Makefile.am: Ditto.
  • rtmonuse/Makefile.am: Ditto.
  • serdbg/Makefile.am: Ditto.
  • shell/Makefile.am: Ditto.
  • stackchk/Makefile.am: Ditto.
  • untar/Makefile.am: Ditto.
  • wrapup/Makefile.am: Reflect new path.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT([rtems-cpukit-libmisc],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([dumpbuf])
8RTEMS_TOP(../..)
9AC_CONFIG_AUX_DIR(../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE([no-define foreign 1.6])
14AM_MAINTAINER_MODE
15
16RTEMS_ENABLE_BARE
17
18RTEMS_ENV_RTEMSCPU
19RTEMS_CHECK_CPU
20RTEMS_CANONICAL_HOST
21
22RTEMS_PROG_CC_FOR_TARGET
23RTEMS_CANONICALIZE_TOOLS
24
25RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
26
27AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
28
29# shell/* wants to assign file descriptors to stdio file descriptors.
30AC_MSG_CHECKING([for assignable stdio])
31AC_COMPILE_IFELSE(
32  [AC_LANG_PROGRAM(
33    [#include <stdio.h>],
34    [stdin = fopen("/tmp", "r")])],
35  [HAVE_ASSIGNABLE_STDIO=yes],
36  [HAVE_ASSIGNABLE_STDIO=no])
37AC_MSG_RESULT([$HAVE_ASSIGNABLE_STDIO])
38
39AM_CONDITIONAL([RTEMS_LIBSHELL],[test x"$HAVE_ASSIGNABLE_STDIO" = x"yes"])
40
41# Explicitly list all Makefiles here
42AC_CONFIG_FILES([Makefile
43cpuuse/Makefile
44shell/Makefile
45devnull/Makefile
46dummy/Makefile
47dumpbuf/Makefile
48monitor/Makefile
49rtmonuse/Makefile
50serdbg/Makefile
51stackchk/Makefile
52capture/Makefile
53untar/Makefile
54mw-fb/Makefile
55wrapup/Makefile
56])
57AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.