source: rtems/c/src/lib/libbsp/sh/simsh4/configure.ac @ 70d7eaa9

4.104.114.84.95
Last change on this file since 70d7eaa9 was 70d7eaa9, checked in by Joel Sherrill <joel.sherrill@…>, on 10/15/01 at 18:07:19

2001-10-12 Ralf Corsepius <corsepiu@…>

  • configure.ac: Added support for START_HW_INIT.
  • console/Makefile.am: Removed VPATH.
  • include/Makefile.am: Added missing ramdisk.h to include_HEADERS.
  • startup/linkcmds: Do not force output format to coff-sh.
  • startup/linkcmds-le: Comment out force of output format and add comment questioning need to have special linkcmds for little endian.
  • wrapup/Makefile.am: Add ramdisk to list of BSP_PIECES.
  • Property mode set to 100644
File size: 1.2 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-simsh4,$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
24CPU_CLOCK_RATE_HZ=${CPU_CLOCK_RATE_HZ-10000000}
25AC_DEFINE_UNQUOTED(
26  [CPU_CLOCK_RATE_HZ],
27  [$CPU_CLOCK_RATE_HZ],
28  [cpu clock rate in HZ])
29
30#  START_HW_INIT
31#       This switch selects whether 'early_hw_init()' is called from
32#       'start.S'; 'bsp_hw_init()' is always called from 'bspstart.c'
33#
34START_HW_INIT=${START_HW_INIT-1}
35AC_DEFINE_UNQUOTED(
36  [START_HW_INIT],
37  [$START_HW_INIT],
38  [Whether to call early_hw_init from start.S])
39
40AM_CONFIG_HEADER(include/bspopts.h)
41
42RTEMS_PROJECT_ROOT
43
44# Explicitly list all Makefiles here
45AC_CONFIG_FILES([Makefile
46console/Makefile
47include/Makefile
48start/Makefile
49startup/Makefile
50clock/Makefile
51timer/Makefile
52wrapup/Makefile
53])
54AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.