source: rtems/c/src/lib/libbsp/sh/gensh2/configure.ac @ d516bbf

4.104.114.84.95
Last change on this file since d516bbf was d516bbf, checked in by Joel Sherrill <joel.sherrill@…>, on 11/15/01 at 16:54:16

2001-11-15 Ralf Corsepius <corsepiu@…>

  • configure.ac: Add RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ), RTEMS_BSPOPTS_*(START_HW_INIT), RTEMS_BSPOPTS_*(STANDALONE_EVB).
  • wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9AC_CONFIG_AUX_DIR(../../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp-sh-gensh2,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
16RTEMS_CANONICALIZE_TOOLS
17
18RTEMS_ENV_RTEMSBSP
19RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
20RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
21RTEMS_CANONICAL_HOST
22
23## bsp-specific options
24RTEMS_BSPOPTS_SET([CPU_CLOCK_RATE_HZ],[*],[29491200])
25RTEMS_BSPOPTS_HELP([CPU_CLOCK_RATE_HZ],[cpu clock rate in HZ])
26
27## Used in scitab/Makefile.am
28AC_SUBST(CPU_CLOCK_RATE_HZ)
29
30RTEMS_BSPOPTS_SET([START_HW_INIT],[*],[])
31RTEMS_BSPOPTS_HELP([START_HW_INIT],
32[If defined, selects whether 'early_hw_init()' is called from 'start.S';
33 'bsp_hw_init()' is always called from 'bspstart.c'])
34
35RTEMS_BSPOPTS_SET([STANDALONE_EVB],[*],[])
36RTEMS_BSPOPTS_HELP([STANDALONE_EVB],
37[If defined, compiles code to jump-start from FLASH, without a monitor])
38
39AM_CONFIG_HEADER(include/bspopts.h)
40RTEMS_PROJECT_ROOT
41
42# Explicitly list all Makefiles here
43AC_CONFIG_FILES([Makefile
44console/Makefile
45include/Makefile
46scitab/Makefile
47start/Makefile
48startup/Makefile
49wrapup/Makefile])
50AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.