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

4.104.114.84.95
Last change on this file since a976681e was 847dbbe, checked in by Joel Sherrill <joel.sherrill@…>, on 02/01/00 at 13:41:54

Patches rtems-rc-20000118-5.diff from Ralf Corsepius <corsepiu@…>
that contains:

  • The fix for the gen68360/network/Makefile.am
  • automatically set permissions to 755 to scripts/buildall and scripts-ada/buildall (I remembered a trick to achieve this :).
  • automake support for libbsp/* and libcpu/* (Attn: This part will finally break old-style configuration for all non-public cpus)

NOTES:

  • This patch has only been tested for a random selection of BSPs (I haven't rebuilt all toolchains yet).
  • This patch is against rtem-cvs as of this morning (MET).

To apply:

patch -p1 <rtems-rc-20000118-5.diff
cvs rm -f ./c/src/lib/libbsp/Makefile.in
cvs rm -f ./c/src/lib/libbsp/shmdr/Makefile.in
cvs rm -f ./c/src/lib/libcpu/Makefile.in
cvs add ./c/src/lib/libbsp/Makefile.am
cvs add ./c/src/lib/libbsp/shmdr/Makefile.am
cvs add ./c/src/lib/libcpu/Makefile.am
./bootstrap

  • Property mode set to 100644
File size: 531 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(README)
7RTEMS_TOP(../../../..)
8AC_CONFIG_AUX_DIR(../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE(rtems-c-src-lib-libcpu,$RTEMS_VERSION,no)
12AM_MAINTAINER_MODE
13
14RTEMS_CHECK_CPU
15RTEMS_CANONICAL_HOST
16
17# find all the CPU dependent library Makefiles
18if test -f $srcdir/$RTEMS_CPU/configure.in; then
19  RTEMS_CPU_SUBDIR="$RTEMS_CPU"
20fi
21AC_SUBST(RTEMS_CPU_SUBDIR)
22
23AC_CONFIG_SUBDIRS($RTEMS_CPU_SUBDIR)
24
25AC_OUTPUT(
26Makefile)
Note: See TracBrowser for help on using the repository browser.