source: rtems/c/src/lib/libbsp/m68k/mvme167/configure.ac @ 74e2998

Last change on this file since 74e2998 was 74e2998, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/03 at 14:41:57

2003-08-11 Ralf Corsepius <corsepiu@…>

  • configure.ac: Use rtems-bugs@… as bug report email address.
  • 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.57)
6AC_INIT([rtems-c-src-lib-libbsp-m68k-mvme167],[_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
17RTEMS_CHECK_NETWORKING
18AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
19
20# HACK: Propagate #define mvme167 into bspopts.h
21# Used inside ../mvme162/include/mvme16x_hw.h
22AC_DEFINE_UNQUOTED([mvme167],[1],
23[If building the mvme167 BSP])
24
25RTEMS_BSPOPTS_SET([CD2401_INT_LEVEL],[*],[1])
26RTEMS_BSPOPTS_HELP([CD2401_INT_LEVEL],
27[Interrupt level for the CD2401(when CD2401_IO_MODE == 1).])
28
29RTEMS_BSPOPTS_SET([CD2401_IO_MODE],[*],[0])
30RTEMS_BSPOPTS_HELP([CD2401_IO_MODE],
31[0 for polled I/O, 1 for interrupt-driven.])
32
33RTEMS_BSPOPTS_SET([CD2401_USE_TERMIOS],[*],[0])
34RTEMS_BSPOPTS_HELP([CD2401_USE_TERMIOS],
35[1 for using termios based console.])
36
37# Explicitly list all Makefiles here
38AC_CONFIG_FILES([Makefile
39clock/Makefile
40console/Makefile
41fatal/Makefile
42include/Makefile
43network/Makefile
44start/Makefile
45startup/Makefile
46timer/Makefile
47wrapup/Makefile])
48AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.