source: rtems/testsuites/samples/configure.ac @ 4691b48

4.104.114.84.95
Last change on this file since 4691b48 was 4691b48, checked in by Joel Sherrill <joel.sherrill@…>, on 01/27/03 at 23:30:07

2003-01-27 Joel Sherrill <joel@…>

  • Makefile.am, configure.ac: Added new test loopback which shows how to use the loopback interface. Thank you Eric Norum for a portable target independent test which exercises the TCP/IP. This should prevent massive failures in the TCP/IP stack from reaching the street.
  • loopback/.cvsignore, loopback/Makefile.am, loopback/README, loopback/init.c, loopback/loopback.scn: New files.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT([rtems-c-src-tests-samples],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([hello])
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_NETWORKING
17RTEMS_ENABLE_CXX
18RTEMS_ENABLE_BARE
19
20RTEMS_ENV_RTEMSBSP
21RTEMS_CHECK_CPU
22RTEMS_CANONICAL_HOST
23
24RTEMS_PROJECT_ROOT
25
26RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
27
28RTEMS_PROG_CXX_FOR_TARGET
29
30RTEMS_CANONICALIZE_TOOLS
31
32RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
33RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
34RTEMS_CHECK_CXX(RTEMS_BSP)
35RTEMS_CHECK_NETWORKING
36
37AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
38AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes")
39AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")
40
41# Explicitly list all Makefiles here
42AC_CONFIG_FILES([Makefile
43base_sp/Makefile
44hello/Makefile
45loopback/Makefile
46minimum/Makefile
47paranoia/Makefile
48ticker/Makefile
49unlimited/Makefile
50base_mp/Makefile
51base_mp/node1/Makefile
52base_mp/node2/Makefile
53cdtest/Makefile
54])
55AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.