Subversion Repositories HelenOS-historic

Rev

Rev 306 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 306 Rev 326
Line 1... Line 1...
1
#! /bin/sh
1
#! /bin/sh
2
 
2
 
-
 
3
if [ -z "$1" ]; then
-
 
4
  echo "Usage: $0 [msim|simics|lgxemul|bgxemul|indy]"
-
 
5
  exit 1
3
set -e
6
else
-
 
7
  MACHINE=$1
-
 
8
fi
-
 
9
 
4
# Generate context_offset.h
10
# Generate context_offset.h
5
(cd ../tools/mips/;make gencontext;./gencontext)
11
(cd ../tools/mips/;make gencontext;./gencontext)
-
 
12
rm ../arch/mips/_link.ld
6
 
13
 
7
 
-
 
8
make all ARCH=mips
14
make all ARCH=mips MACHINE=$MACHINE