source: rtems/c/src/libchip/configure.in @ 48bfd992

4.104.114.84.95
Last change on this file since 48bfd992 was 2782e69, checked in by Joel Sherrill <joel.sherrill@…>, on 10/26/99 at 12:39:24

idir=/opt/tmp/opt/rtems
rdir=/opt/rtems

cd $idir
find . -type f | while read file
do

if [ ! -f ${file} ] ; then

echo ${file} missing

fi

done

  • Property mode set to 100644
File size: 901 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-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
32# pick up all the Makefiles in required parts of the tree
33if test "$RTEMS_CPU" = "unix"; then
34## HACK: Suppress libchip for unix
35AC_MSG_ERROR(Can't build libchip for $RTEMS_CPU)
36fi
37
38AM_CONDITIONAL(HAS_NETWORKING, test "$HAS_NETWORKING" = "yes")
39
40# try to explicitly list a Makefile here
41AC_OUTPUT(
42Makefile
43network/Makefile
44rtc/Makefile
45serial/Makefile
46)
Note: See TracBrowser for help on using the repository browser.