summaryrefslogtreecommitdiff
path: root/contrib/crossrpms/cpukit/build.add
blob: 2fb3d76b3bbe97c84f15615e76ac0cf6ce297d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%build
%if "%{_prefix}" != "/usr"
  export PATH="%{_bindir}:${PATH}"
%endif
  mkdir -p build

  cd build
  ../rtems-%{cpukit_pkgvers}/configure \
    --prefix=%{_prefix} \
    --target=@tool_target@ \
    --enable-multilib \
    --disable-rtemsbsp

  make all RTEMS_BSP=
  cd ..