source: rtems/c/src/lib/libbsp/sh/shsim/configure.ac @ 931ed32b

4.115
Last change on this file since 931ed32b was 309dbd0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/28/09 at 06:28:41

Whitespace removal.

  • 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.60)
6AC_INIT([rtems-c-src-lib-libbsp-sh-shsim],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.10])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_PROG_CCAS
17
18##
19RTEMS_BSP_ARG_ENABLE([iomem-patch],
20[  --enable-iomem-patch=[[yes|no]]])
21if test x"$enable_iomem_patch" = x"yes"; then
22AC_DEFINE_UNQUOTED(
23  [HAVE_SHSIM_IOMEM_PATCH],
24  [1],
25  [whether support for functional IOMEM in shsim/gdb shall be enabled])
26fi
27
28RTEMS_BSPOPTS_SET([CPU_CLOCK_RATE_HZ],[*],[20000000])
29RTEMS_BSPOPTS_HELP([CPU_CLOCK_RATE_HZ],
30[cpu clock rate in HZ])
31
32RTEMS_BSPOPTS_SET([START_HW_INIT],[*],[])
33RTEMS_BSPOPTS_HELP([START_HW_INIT],
34[If defined, selects whether 'early_hw_init()' is called from 'start.S';
35 'bsp_hw_init()' is always called from 'bspstart.c'])
36
37## Used in scitab/Makefile.am
38AC_SUBST(CPU_CLOCK_RATE_HZ)
39
40RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
41
42# Explicitly list all Makefiles here
43AC_CONFIG_FILES([Makefile])
44AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.