source: rtems/c/src/lib/libbsp/sh/gensh4/configure.ac @ 991fdb33

4.115
Last change on this file since 991fdb33 was 12072880, checked in by Sebastian Huber <sebastian.huber@…>, on 12/04/14 at 09:03:50

Update bug report URL

  • Property mode set to 100644
File size: 1.1 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-sh-gensh4],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([bsp_specs])
6RTEMS_TOP(../../../../../..)
7
8RTEMS_CANONICAL_TARGET_CPU
9AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
10RTEMS_BSP_CONFIGURE
11
12RTEMS_PROG_CC_FOR_TARGET
13RTEMS_CANONICALIZE_TOOLS
14RTEMS_PROG_CCAS
15
16## bsp-specific options
17CPU_CLOCK_RATE_HZ=${CPU_CLOCK_RATE_HZ-96000000}
18AC_DEFINE_UNQUOTED(
19  [CPU_CLOCK_RATE_HZ],
20  [$CPU_CLOCK_RATE_HZ],
21  [cpu clock rate in HZ])
22
23#  START_HW_INIT
24#       This switch selects whether 'early_hw_init()' is called from
25#       'start.S'; 'bsp_hw_init()' is always called from 'bspstart.c'
26RTEMS_BSPOPTS_SET([START_HW_INIT],[*],[0])
27RTEMS_BSPOPTS_HELP([START_HW_INIT],
28   [Whether to call early_hw_init from start.S])
29
30RTEMS_BSPOPTS_SET([COPY_DATA_FROM_ROM],[*],[0])
31RTEMS_BSPOPTS_HELP([COPY_DATA_FROM_ROM],
32   [Whether to copy data from ROM to RAM in start.S])
33
34RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
35
36# Explicitly list all Makefiles here
37AC_CONFIG_FILES([Makefile])
38AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.