#!/bin/sh

#
# $Id: bit_bfd,v 1.1 2002/11/21 19:52:25 ericn Exp $
#

#
# Where to find the binutils source
#
BINUTILS_SRC_DIR=~/src/RTEMS/bt/binutils-2.13.1
set -ex

rm -rf build
mkdir build
cd build
make -w BINUTILS_SRC_DIR="$BINUTILS_SRC_DIR" -f ../RTEMS_Makefiles/Makefile.bfd
cd ..
rm -rf build
