source: rtems/c/src/lib/libbsp/powerpc/eth_comm/configure.ac @ 6128a4a

4.104.114.84.95
Last change on this file since 6128a4a was 5466140, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/30/04 at 15:59:23

2004-01-30 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Merge-in canbus/Makefile.am, clock/Makefile.am, console/Makefile.am, irq/Makefile.am, network/Makefile.am, startup/Makefile.am, vectors/Makefile.am. Use automake compilation rules.
  • canbus/Makefile.am, clock/Makefile.am, console/Makefile.am, irq/Makefile.am, network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove.
  • configure.ac: Reflect changes above.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.59)
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-eth_comm],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.8])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_PROG_CCAS
17
18RTEMS_CHECK_NETWORKING
19AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
20
21# FIXME: Explanation cloned from mbx8xx
22RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
23RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
24[(BSP--console driver)
25 Define to 0 or 1 if you want polled I/O performed by RTEMS.
26 Define to 1 if you want interrupt-driven performed by RTEMS.
27 Define to 2 if you want polled I/O performed by EPPCBug.
28 There is no provision to have a mix of interrupt-driven and polled I/O
29 ports, except that the printk port may use a different mode from the
30 other ports. If this is done, do not open the printk port from an RTEMS
31 application. With EPPCBug 1.1, if mode 2 is selected, CONSOLE_MINOR
32 must be set to SMC1_MINOR. This is a deficiency of the firmware: it
33 does not perform serial I/O on any port other than its default debug
34 port, which must be SMC1.])
35
36RTEMS_BSPOPTS_SET([DISPATCH_HANDLER_STAT],[*],[])
37RTEMS_BSPOPTS_HELP([DISPATCH_HANDLER_STAT],
38[used by irq/irq.c])
39
40# Explicitly list all Makefiles here
41AC_CONFIG_FILES([Makefile
42wrapup/Makefile])
43
44RTEMS_PPC_EXCEPTIONS([new])
45
46AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.