source: rtems/c/src/aclocal/bsp-linkcmds.m4 @ 91d2e18

4.115
Last change on this file since 91d2e18 was 91d2e18, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/04/12 at 06:53:58

Remove CVS-Ids.

  • Property mode set to 100644
File size: 445 bytes
Line 
1dnl Install a BSP's linkcmds from the source-tree into the build-tree
2AC_DEFUN([RTEMS_BSP_LINKCMDS],[
3LINKCMDS=
4for f in "${srcdir}/startup/linkcmds.${RTEMS_BSP}" \
5  "${srcdir}/startup/linkcmds.${RTEMS_BSP_FAMILY}" \
6  "${srcdir}/startup/linkcmds";
7do
8  AS_IF([test -f "$f"],[
9    LINKCMDS="$f"
10    break])
11done
12
13AS_IF([test -z "${LINKCMDS}"],[
14  AC_MSG_ERROR([can not determine linkcmds])])
15
16AC_CONFIG_LINKS([startup/linkcmds:${LINKCMDS}])
17])
Note: See TracBrowser for help on using the repository browser.