source: rtems/c/src/lib/libbsp/arm/csb337/configure.ac @ 64f7724

4.115
Last change on this file since 64f7724 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: 2.3 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-arm-csb337],[_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
16RTEMS_CHECK_NETWORKING
17AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
18
19RTEMS_BSPOPTS_SET([csb637],[kit637_v6],[1])
20RTEMS_BSPOPTS_SET([csb637],[csb637],[1])
21RTEMS_BSPOPTS_SET([csb637],[*],[0])
22RTEMS_BSPOPTS_HELP([csb637],
23[If defined, this indicates that the BSP is being built for the
24 csb637 variant.])
25
26RTEMS_BSPOPTS_SET([ENABLE_LCD],[kit637_v6],[0])
27RTEMS_BSPOPTS_SET([ENABLE_LCD],[*],[0])
28RTEMS_BSPOPTS_HELP([ENABLE_LCD],
29[If defined, enable use of the SED1356 controller and LCD.])
30AM_CONDITIONAL(ENABLE_LCD,test "$ENABLE_LCD" = "1")
31
32RTEMS_BSPOPTS_SET([ENABLE_UMON],[*],[1])
33RTEMS_BSPOPTS_HELP([ENABLE_UMON],
34[If defined, enable use of the uMon console.])
35AM_CONDITIONAL(ENABLE_UMON,test "$ENABLE_UMON" = "1")
36
37RTEMS_BSPOPTS_SET([ENABLE_UMON_CONSOLE],[*],[1])
38RTEMS_BSPOPTS_HELP([ENABLE_UMON_CONSOLE],
39[If defined, enable use of the MicroMonitor console device.])
40AM_CONDITIONAL(ENABLE_UMON_CONSOLE,test "$ENABLE_UMON_CONSOLE" = "1")
41
42## If ENABLE_UMON is 0 and ENABLE_UMON_CONSOLE is 1, then it is an error.
43## TODO: Catch this error.
44
45RTEMS_BSPOPTS_SET([ENABLE_USART0],[*],[1])
46RTEMS_BSPOPTS_HELP([ENABLE_USART0],
47[If defined, enable use of the USART 0.])
48AM_CONDITIONAL(ENABLE_USART0,test "$ENABLE_USART0" = "1")
49
50RTEMS_BSPOPTS_SET([ENABLE_USART1],[*],[1])
51RTEMS_BSPOPTS_HELP([ENABLE_USART1],
52[If defined, enable use of the USART 1.])
53AM_CONDITIONAL(ENABLE_USART1,test "$ENABLE_USART1" = "1")
54
55RTEMS_BSPOPTS_SET([ENABLE_USART2],[*],[1])
56RTEMS_BSPOPTS_HELP([ENABLE_USART2],
57[If defined, enable use of the USART 2.])
58AM_CONDITIONAL(ENABLE_USART2,test "$ENABLE_USART2" = "1")
59
60RTEMS_BSPOPTS_SET([ENABLE_USART3],[*],[1])
61RTEMS_BSPOPTS_HELP([ENABLE_USART3],
62[If defined, enable use of the USART 3.])
63AM_CONDITIONAL(ENABLE_USART3,test "$ENABLE_USART3" = "1")
64
65RTEMS_BSP_CLEANUP_OPTIONS(1, 1)
66RTEMS_BSP_LINKCMDS
67
68# Explicitly list all Makefiles here
69AC_CONFIG_FILES([Makefile])
70AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.