Subversion Repositories HelenOS-historic

Rev

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

Rev 376 Rev 381
Line 1... Line 1...
1
#! /bin/sh
1
#! /bin/sh
2
 
2
 
3
COMPILER=""
3
COMPILER=""
4
 
4
 
5
if [ $1 == "cross" ];
5
if [ $1 == "native" ];
6
then
6
then
7
	COMPILER="CROSS_COMPILER=yes";
7
	COMPILER="NATIVE_COMPILER=yes";
8
fi;
8
fi;
9
 
9
 
10
make all ARCH=ia32 $COMPILER
10
make all ARCH=ia32 $COMPILER