source: rtems/c/src/make/configure.ac @ a77cd066

4.104.114.84.95
Last change on this file since a77cd066 was e98285d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/24/03 at 10:34:05

2003-11-24 Ralf Corsepius <corsepiu@…>

  • target.cfg.in: Remove RTEMS_USE_MACROS.
  • Makefile.inc.in: Remove RTEMS_USE_MACROS.
  • aclocal/enable-inlines.m4: Removed.
  • configure.ac: Remove RTEMS_ENABLE_INLINES.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5##
6## This script configures the configuration files below make/
7##
8
9AC_PREREQ(2.57)
10AC_INIT([rtems-c-src-make],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
11AC_CONFIG_SRCDIR([bsp.cfg.in])
12RTEMS_TOP(../../..)
13
14RTEMS_CANONICAL_TARGET_CPU
15
16AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
17AM_MAINTAINER_MODE
18
19RTEMS_ENABLE_MULTIPROCESSING
20RTEMS_ENABLE_POSIX
21RTEMS_ENABLE_ITRON
22RTEMS_ENABLE_NETWORKING
23RTEMS_ENABLE_RDBG
24RTEMS_ENABLE_CXX
25RTEMS_ENABLE_BARE
26
27RTEMS_ENV_RTEMSBSP
28
29## BEGIN configure.host.in
30
31AC_PATH_PROG(CAT,cat)
32AC_PATH_PROG(CP,cp)
33AC_PATH_PROG(MV,mv)
34AC_PATH_PROG(LN,ln)
35AC_PROG_LN_S
36AC_PATH_PROG(CHMOD,chmod)
37AC_PATH_PROG(SORT,sort)
38
39AC_PATH_PROG(TOUCH,touch)
40AC_PATH_PROG(CMP,cmp)
41
42AC_PATH_PROG(SED,sed)
43AC_PATH_PROGS(M4,gm4 m4)
44
45RTEMS_PATH_KSH
46
47## BEGIN configure.target.in
48
49RTEMS_PROJECT_ROOT
50
51RTEMS_PROG_CC_FOR_TARGET
52
53## check for g++
54RTEMS_PROG_CXX_FOR_TARGET
55
56RTEMS_CANONICALIZE_TOOLS
57
58## if this is an i386, does gas have good code16 support?
59RTEMS_I386_GAS_CODE16
60
61RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
62
63RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)
64RTEMS_CHECK_NETWORKING(RTEMS_BSP)
65RTEMS_CHECK_RDBG(RTEMS_BSP)
66RTEMS_CHECK_POSIX_API(RTEMS_BSP)
67RTEMS_CHECK_CXX(RTEMS_BSP)
68RTEMS_CHECK_ITRON_API(RTEMS_BSP)
69
70AC_SUBST(rtems_cv_prog_cc_cross)
71AC_SUBST(RTEMS_HAS_CPLUSPLUS)
72AC_SUBST(BARE_CPU_CFLAGS)
73AC_SUBST(BARE_CPU_MODEL)
74AC_SUBST(program_prefix)
75AC_SUBST(CC_CFLAGS_DEFAULT)
76AC_SUBST(CC_CFLAGS_DEBUG_V)
77
78cfg_dir="${RTEMS_TOPdir}/make"
79AC_SUBST(cfg_dir)
80
81# Symlink leaf.cfg from the source directory into the build directory.
82AC_CONFIG_LINKS([leaf.cfg:leaf.cfg])
83
84# Explicitly list all Makefiles here
85AC_CONFIG_FILES([Makefile
86Makefile.inc
87host.cfg
88bsp.cfg
89])
90AC_CONFIG_FILES([target.cfg])
91AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.