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

4.104.114.84.95
Last change on this file since 509f8351 was 5b53d97, checked in by Joel Sherrill <joel.sherrill@…>, on 10/24/00 at 21:52:19

2000-10-24 Alan Cudmore <alanc@…> and

Joel Sherrill <joel@…>

  • This is a major reworking of the mips64orion port to use gcc predefines as much as possible and a big push to multilib the mips port. The mips64orion port was copied/renamed to mips to be more like other GNU tools. Alan did most of the technical work of determining how to map old macro names used by the mips64orion port to standard compiler macro definitions. Joel did the merge with CVS magic to keep individual file history and did the BSP modifications. Details follow:
  • Makefile.am: Made clock and timer subdirectories conditional.
  • configure.in: Ditto.
  • clock/clock.S: Switch from using <idtmon.h> to <asm.h>.
  • clock/gettime.S: Switch from using <idtmon.h> to <asm.h>.
  • Property mode set to 100644
File size: 687 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
32# Explicitly list all Makefiles here
33AC_OUTPUT(
34Makefile
35clock/Makefile
36timer/Makefile)
Note: See TracBrowser for help on using the repository browser.