source: rtems/c/src/lib/libbsp/sh/gensh2/configure.in @ 46d31795

4.104.114.84.95
Last change on this file since 46d31795 was 5dbd4fe, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/01 at 16:51:06

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

  • configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]), add bspopts.h.
  • include/.cvsignore: Add stamp-h*, bspopts.h*.
  • include/Makefile.am: Use include_HEADERS instead of H_FILES.
  • include/bsp.h: Add bspopts.h.
  • startup/bspstart.c: Replace HZ w/ CPU_CLOCK_RATE_HZ.
  • Property mode set to 100644
File size: 909 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(bsp_specs)
7RTEMS_TOP(../../../../../..)
8AC_CONFIG_AUX_DIR(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE(rtems-c-src-lib-libbsp-sh-gensh2,$RTEMS_VERSION,no)
12AM_MAINTAINER_MODE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16
17RTEMS_ENV_RTEMSBSP
18RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
19RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
20RTEMS_CANONICAL_HOST
21
22## bsp-specific options
23CPU_CLOCK_RATE_HZ=${CPU_CLOCK_RATE_HZ-29491200}
24AC_DEFINE_UNQUOTED([CPU_CLOCK_RATE_HZ],
25  [$CPU_CLOCK_RATE_HZ],
26  [cpu clock rate in HZ])
27
28## Used in scitab/Makefile.am
29AC_SUBST(CPU_CLOCK_RATE_HZ)
30
31AM_CONFIG_HEADER(include/bspopts.h)
32RTEMS_PROJECT_ROOT
33
34# Explicitly list all Makefiles here
35AC_OUTPUT(
36Makefile
37console/Makefile
38include/Makefile
39scitab/Makefile
40start/Makefile
41startup/Makefile
42wrapup/Makefile)
Note: See TracBrowser for help on using the repository browser.