Changeset 1b16e63c in rtems
- Timestamp:
- Jul 5, 2002, 4:13:07 PM (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 02ccf4a
- Parents:
- 51b4875
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/ChangeLog
r51b4875 r1b16e63c 1 2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * automake/multilib.am: Add install-multi. 4 * aclocal/rtems-top.m4: Reflect new RTEMS_TOPdir to detecting 5 version.m4. 6 Add --with-project-root. 7 Reflect --with-project-root to setting up PROJECT_ROOT. 8 * aclocal/env-rtemscpu.m4: Reflect new RTEMS_TOPdir (HACK). 9 * aclocal/check-cpu.m4: Reflect new RTEMS_TOPdir. 10 * aclocal/check-bsps.m4: Reflect new RTEMS_TOPdir. 11 1 12 2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 13 -
c/src/exec/aclocal/check-bsps.m4
r51b4875 r1b16e63c 6 6 7 7 AC_MSG_CHECKING([for make/custom/[$]$1.cfg]) 8 if test -r "$srcdir/$RTEMS_TOPdir/ make/custom/[$]$1.cfg"; then8 if test -r "$srcdir/$RTEMS_TOPdir/../../make/custom/[$]$1.cfg"; then 9 9 AC_MSG_RESULT([yes]) 10 10 else -
c/src/exec/aclocal/check-cpu.m4
r51b4875 r1b16e63c 9 9 # Is this a supported CPU? 10 10 AC_MSG_CHECKING([if cpu $RTEMS_CPU is supported]) 11 if test -d "$srcdir/$RTEMS_TOPdir/ c/src/exec/score/cpu/$RTEMS_CPU"; then11 if test -d "$srcdir/$RTEMS_TOPdir/exec/score/cpu/$RTEMS_CPU"; then 12 12 AC_MSG_RESULT(yes) 13 13 else -
c/src/exec/aclocal/env-rtemscpu.m4
r51b4875 r1b16e63c 19 19 AC_SUBST(MULTISUBDIR) 20 20 21 PROJECT_ROOT=" ${RTEMS_TOPdir}/\$(MULTIBUILDTOP)\$(top_builddir)"21 PROJECT_ROOT="../../${RTEMS_TOPdir}/\$(MULTIBUILDTOP)\$(top_builddir)" 22 22 GCC_SPECS="-isystem \$(PROJECT_ROOT)/lib/include" 23 23 AC_SUBST(GCC_SPECS) -
c/src/exec/aclocal/rtems-top.m4
r51b4875 r1b16e63c 36 36 AC_SUBST(PROJECT_TOPdir) 37 37 38 if test "$with_target_subdir" = "." ; then 39 # Native 40 PROJECT_ROOT="${RTEMS_TOPdir}/\$(top_builddir)" 41 else 42 # Cross 43 PROJECT_ROOT="${RTEMS_TOPdir}/\$(top_builddir)" 44 fi 38 AS_IF([test "${with_project_root+set}" = set], 39 [PROJECT_ROOT="${with_project_root}${RTEMS_TOPdir}/\$(top_builddir)"], 40 [PROJECT_ROOT="../../${RTEMS_TOPdir}/\$(top_builddir)"]) 45 41 AC_SUBST(PROJECT_ROOT) 46 42 47 43 AC_MSG_CHECKING([for RTEMS Version]) 48 AS_IF([test -r "${srcdir}/${RTEMS_TOPdir}/ aclocal/version.m4"],44 AS_IF([test -r "${srcdir}/${RTEMS_TOPdir}/exec/aclocal/version.m4"], 49 45 [], 50 [AC_MSG_ERROR([Unable to find ${RTEMS_TOPdir}/ aclocal/version.m4])])46 [AC_MSG_ERROR([Unable to find ${RTEMS_TOPdir}/exec/aclocal/version.m4])]) 51 47 AC_MSG_RESULT([_RTEMS_VERSION]) 52 48 ])dnl -
c/src/exec/automake/multilib.am
r51b4875 r1b16e63c 9 9 10 10 # Multilib support rules 11 .PHONY: all-multi mostlyclean-multi clean-multi distclean-multi \11 .PHONY: all-multi install-multi mostlyclean-multi clean-multi distclean-multi \ 12 12 maintainer-clean-multi 13 13 14 14 if MULTILIB 15 15 all-recursive: all-multi 16 install-recursive: install-multi 17 16 18 mostlyclean-recursive: mostlyclean-multi 17 19 clean-recursive: clean-multi … … 21 23 all-multi: 22 24 $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do 25 install-multi: 26 $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do 27 23 28 mostlyclean-multi: 24 29 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean -
cpukit/ChangeLog
r51b4875 r1b16e63c 1 2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * automake/multilib.am: Add install-multi. 4 * aclocal/rtems-top.m4: Reflect new RTEMS_TOPdir to detecting 5 version.m4. 6 Add --with-project-root. 7 Reflect --with-project-root to setting up PROJECT_ROOT. 8 * aclocal/env-rtemscpu.m4: Reflect new RTEMS_TOPdir (HACK). 9 * aclocal/check-cpu.m4: Reflect new RTEMS_TOPdir. 10 * aclocal/check-bsps.m4: Reflect new RTEMS_TOPdir. 11 1 12 2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 13 -
cpukit/aclocal/check-bsps.m4
r51b4875 r1b16e63c 6 6 7 7 AC_MSG_CHECKING([for make/custom/[$]$1.cfg]) 8 if test -r "$srcdir/$RTEMS_TOPdir/ make/custom/[$]$1.cfg"; then8 if test -r "$srcdir/$RTEMS_TOPdir/../../make/custom/[$]$1.cfg"; then 9 9 AC_MSG_RESULT([yes]) 10 10 else -
cpukit/aclocal/check-cpu.m4
r51b4875 r1b16e63c 9 9 # Is this a supported CPU? 10 10 AC_MSG_CHECKING([if cpu $RTEMS_CPU is supported]) 11 if test -d "$srcdir/$RTEMS_TOPdir/ c/src/exec/score/cpu/$RTEMS_CPU"; then11 if test -d "$srcdir/$RTEMS_TOPdir/exec/score/cpu/$RTEMS_CPU"; then 12 12 AC_MSG_RESULT(yes) 13 13 else -
cpukit/aclocal/env-rtemscpu.m4
r51b4875 r1b16e63c 19 19 AC_SUBST(MULTISUBDIR) 20 20 21 PROJECT_ROOT=" ${RTEMS_TOPdir}/\$(MULTIBUILDTOP)\$(top_builddir)"21 PROJECT_ROOT="../../${RTEMS_TOPdir}/\$(MULTIBUILDTOP)\$(top_builddir)" 22 22 GCC_SPECS="-isystem \$(PROJECT_ROOT)/lib/include" 23 23 AC_SUBST(GCC_SPECS) -
cpukit/aclocal/rtems-top.m4
r51b4875 r1b16e63c 36 36 AC_SUBST(PROJECT_TOPdir) 37 37 38 if test "$with_target_subdir" = "." ; then 39 # Native 40 PROJECT_ROOT="${RTEMS_TOPdir}/\$(top_builddir)" 41 else 42 # Cross 43 PROJECT_ROOT="${RTEMS_TOPdir}/\$(top_builddir)" 44 fi 38 AS_IF([test "${with_project_root+set}" = set], 39 [PROJECT_ROOT="${with_project_root}${RTEMS_TOPdir}/\$(top_builddir)"], 40 [PROJECT_ROOT="../../${RTEMS_TOPdir}/\$(top_builddir)"]) 45 41 AC_SUBST(PROJECT_ROOT) 46 42 47 43 AC_MSG_CHECKING([for RTEMS Version]) 48 AS_IF([test -r "${srcdir}/${RTEMS_TOPdir}/ aclocal/version.m4"],44 AS_IF([test -r "${srcdir}/${RTEMS_TOPdir}/exec/aclocal/version.m4"], 49 45 [], 50 [AC_MSG_ERROR([Unable to find ${RTEMS_TOPdir}/ aclocal/version.m4])])46 [AC_MSG_ERROR([Unable to find ${RTEMS_TOPdir}/exec/aclocal/version.m4])]) 51 47 AC_MSG_RESULT([_RTEMS_VERSION]) 52 48 ])dnl -
cpukit/automake/multilib.am
r51b4875 r1b16e63c 9 9 10 10 # Multilib support rules 11 .PHONY: all-multi mostlyclean-multi clean-multi distclean-multi \11 .PHONY: all-multi install-multi mostlyclean-multi clean-multi distclean-multi \ 12 12 maintainer-clean-multi 13 13 14 14 if MULTILIB 15 15 all-recursive: all-multi 16 install-recursive: install-multi 17 16 18 mostlyclean-recursive: mostlyclean-multi 17 19 clean-recursive: clean-multi … … 21 23 all-multi: 22 24 $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do 25 install-multi: 26 $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do 27 23 28 mostlyclean-multi: 24 29 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean
Note: See TracChangeset
for help on using the changeset viewer.