Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 327 → Rev 328

/SPARTAN/trunk/src/Makefile.config
4,6 → 4,9
#ARCH=ppc
#ARCH=amd64
 
# If this is yes, then cross compiler will be used instead of host compiler
CROSS_COMPILER=no
 
# Support for symetric multiprocessors
SMP=__SMP__
 
/SPARTAN/trunk/src/build.ia32
1,3 → 1,10
#! /bin/sh
 
make all ARCH=ia32
COMPILER=""
 
if [ $1 == "cross" ];
then
COMPILER="CROSS_COMPILER=yes";
fi;
 
make all ARCH=ia32 $COMPILER