summaryrefslogtreecommitdiffstats
path: root/contrib/crossrpms/cpukit/build.add
blob: cd42b088cbec922afb416d82c100eb299ec6c224 (plain) (blame)
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_version}/configure \
    --prefix=%{_prefix} \
    --target=@tool_target@ \
    --enable-multilib \
    --disable-rtemsbsp

  make all RTEMS_BSP=
  cd ..