mirror of
https://github.com/t-crest/rtems.git
synced 2025-11-16 12:34:47 +00:00
* aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4, aclocal/check-bsps.m4, aclocal/check-custom-bsp.m4, aclocal/enable-bare.m4, aclocal/enable-cxx.m4, aclocal/enable-inlines.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-rdbg.m4, aclocal/enable-rtems-debug.m4, aclocal/enable-rtemsbsp.m4, aclocal/enable-tests.m4, aclocal/multilib.m4, aclocal/path-ksh.m4, aclocal/project-root.m4, aclocal/rtems-top.m4, aclocal/tool-paths.m4, acinclude.m4: Fix underquoting to silence automake-1.8.
24 lines
536 B
Plaintext
24 lines
536 B
Plaintext
AC_DEFUN([RTEMS_TOOLPATHS],
|
|
[
|
|
# tooldir='$(exec_prefix)/'$target_alias
|
|
# Temporary work-around until building in source tree is supported
|
|
AC_REQUIRE([RTEMS_PROJECT_ROOT])
|
|
|
|
tooldir='$(PROJECT_ROOT)'
|
|
AC_SUBST(tooldir)
|
|
|
|
project_includedir='$(tooldir)'/include
|
|
AC_SUBST(project_includedir)
|
|
|
|
project_libdir='$(tooldir)/lib$(MULTISUBDIR)'
|
|
AC_SUBST(project_libdir)
|
|
|
|
project_bindir='$(tooldir)/bin'
|
|
AC_SUBST(project_bindir)
|
|
|
|
rtems_bspdir='$(prefix)/${RTEMS_BSP}'
|
|
AC_SUBST(rtems_bspdir)
|
|
rtems_makedir='$(prefix)/make'
|
|
AC_SUBST(rtems_makedir)
|
|
])
|