source: rtems/c/src/lib/libbsp/arm/armulator/configure.ac @ 5b62726f

4.104.114.84.95
Last change on this file since 5b62726f was d348010c, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/03 at 10:12:40

2003-09-29 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Merge-in include/Makefile.am. Reflect changes to bsp.am.
  • include/Makefile.am: Remove.
  • configure.ac: Reflect changes above.
  • 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.57)
6AC_INIT([rtems-c-src-lib-libbsp-arm-armulator],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16
17# From newlib
18# Select which debug protocol is being used.
19# ARM_RDP_MONITOR selects the Demon monitor.
20# ARM_RDI_MONITOR selects the Angel monitor.
21# If neither are defined, then hard coded defaults will be used
22# to create the program's environment.
23
24RTEMS_BSPOPTS_SET([ARM_RDI_MONITOR],[*],[1])
25RTEMS_BSPOPTS_HELP([ARM_RDI_MONITOR],
26[If defined enable Angel monitor support])
27
28RTEMS_BSPOPTS_SET([ARM_RDP_MONITOR],[*],[])
29RTEMS_BSPOPTS_HELP([ARM_RDP_MONITOR],
30[If defined enable Demon monitor support])
31
32# Explicitly list all Makefiles here
33AC_CONFIG_FILES([Makefile
34clock/Makefile
35console/Makefile
36start/Makefile
37startup/Makefile
38timer/Makefile
39wrapup/Makefile])
40AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.