source: rtems/c/src/lib/libcpu/mips/configure.in @ 0289674

4.104.114.84.95
Last change on this file since 0289674 was 0289674, checked in by Joel Sherrill <joel.sherrill@…>, on 12/13/00 at 22:10:07

2000-12-13 Joel Sherrill <joel@…>

  • configure.in: Added new directories.
  • shared/interrupts/Makefile.am: Added AM_CPPFLAGS to define TX39 when compiling for a TX3904.
  • shared/interrupts/maxvectors.c: Corrected conditional logic.
  • tx39/Makefile.am: Added vectorisrs.
  • tx39/vectorisrs/Makefile.am, tx39/vectorisrs/vectorisrs.c,
  • tx39/vectorisrs/.cvsignore: New files. This decodes the interrupt pending information on the TX3904 and vectors an interrupt.
  • Property mode set to 100644
File size: 871 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(clock)
7RTEMS_TOP(../../../../..)
8AC_CONFIG_AUX_DIR(../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c-src-lib-libcpu-mips,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_BARE
16RTEMS_ENV_RTEMSBSP
17
18RTEMS_CHECK_CPU
19RTEMS_CANONICAL_HOST
20
21RTEMS_PROJECT_ROOT
22
23RTEMS_PROG_CC_FOR_TARGET
24RTEMS_CANONICALIZE_TOOLS
25
26RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
27RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
28
29AM_CONDITIONAL(r46xx, test "$RTEMS_CPU_MODEL" = "R4600" \
30|| test "$RTEMS_CPU_MODEL" = "R4650" )
31
32AM_CONDITIONAL(tx39, test "$RTEMS_CPU_MODEL" = "tx3904")
33
34# Explicitly list all Makefiles here
35AC_OUTPUT(
36Makefile
37clock/Makefile
38shared/Makefile
39shared/cache/Makefile
40shared/interrupts/Makefile
41tx39/Makefile
42tx39/include/Makefile
43tx39/vectorisrs/Makefile
44timer/Makefile)
Note: See TracBrowser for help on using the repository browser.