source: rtems/c/src/tests/samples/configure.in @ 4a238002

4.104.114.84.95
Last change on this file since 4a238002 was 352c9b2, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/99 at 22:07:23

This patch adds the basic framework for the ITRON 3.0 API implementation
for RTEMS.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(hello)
7RTEMS_TOP(../../../..)
8AC_CONFIG_AUX_DIR(../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c-src-tests-samples,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_MULTIPROCESSING
16RTEMS_ENABLE_POSIX
17RTEMS_ENABLE_ITRON
18RTEMS_ENABLE_NETWORKING
19RTEMS_ENABLE_INLINES
20RTEMS_ENABLE_CXX
21RTEMS_ENABLE_GCC28
22RTEMS_ENABLE_LIBCDIR
23RTEMS_ENABLE_BARE
24
25RTEMS_ENV_RTEMSBSP
26RTEMS_CHECK_CPU
27RTEMS_CANONICAL_HOST
28
29RTEMS_PROJECT_ROOT
30
31RTEMS_PROG_CC_FOR_TARGET
32
33if test "$RTEMS_HAS_CPLUSPLUS" = "yes"; then
34  RTEMS_PROG_CXX_FOR_TARGET
35fi
36
37RTEMS_CANONICALIZE_TOOLS
38
39RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
40RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
41RTEMS_CHECK_POSIX_API(RTEMS_BSP)
42RTEMS_CHECK_CXX(RTEMS_BSP)
43
44AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes")
45AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
46
47# Try to explicitly list a Makefile here
48AC_OUTPUT(
49Makefile
50base_sp/Makefile
51hello/Makefile
52minimum/Makefile
53paranoia/Makefile
54ticker/Makefile
55unlimited/Makefile
56base_mp/Makefile
57base_mp/node1/Makefile
58base_mp/node2/Makefile
59cdtest/Makefile
60)
Note: See TracBrowser for help on using the repository browser.