source: rtems/c/src/libchip/configure.in @ 3cad2919

4.104.114.84.95
Last change on this file since 3cad2919 was e1d8abb, checked in by Joel Sherrill <joel.sherrill@…>, on 09/07/99 at 13:45:03

Applied patch rtems-rc-19990820-6.diff.gz from
Ralf Corsepius <corsepiu@…> which converted many
Makefile.in's to Makefile.am's. This added a lot of files.

  • Property mode set to 100644
File size: 949 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(rtc)
7RTEMS_TOP(../../../..)
8AC_CONFIG_AUX_DIR(../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE(rtems-c-src-lib-libchip,$RTEMS_VERSION,no)
12AM_MAINTAINER_MODE
13
14RTEMS_ENABLE_NETWORKING
15RTEMS_ENABLE_LIBCDIR
16RTEMS_ENABLE_BARE
17
18RTEMS_ENV_RTEMSBSP
19
20RTEMS_CHECK_CPU
21RTEMS_CANONICAL_HOST
22
23RTEMS_PROJECT_ROOT
24
25dnl check target cc
26RTEMS_PROG_CC_FOR_TARGET
27RTEMS_CANONICALIZE_TOOLS
28
29RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
30RTEMS_CHECK_NETWORKING(RTEMS_BSP)
31
32RTEMS_BSP_ALIAS(${RTEMS_BSP},bspdir)
33
34# pick up all the Makefiles in required parts of the tree
35if test "$RTEMS_CPU" = "unix"; then
36## HACK: Suppress libchip for unix
37AC_MSG_ERROR(Can't build libchip for $RTEMS_CPU)
38fi
39
40AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes")
41
42# try to explicitly list a Makefile here
43AC_OUTPUT(
44Makefile
45network/Makefile
46rtc/Makefile
47serial/Makefile
48)
Note: See TracBrowser for help on using the repository browser.