Home | History | Annotate | Line # | Download | only in conf
build.playstation2.sh revision 1.2.6.2
      1  1.2.6.2  thorpej #!/bin/sh
      2  1.2.6.2  thorpej DESTDIR=/work/playstation2/root;	export DESTDIR
      3  1.2.6.2  thorpej RELEASEDIR=/work/playstation2/release;	export RELEASEDIR
      4  1.2.6.2  thorpej root=/usr/pkg/cross-ps2
      5  1.2.6.2  thorpej target=mipsEEel-netbsd
      6  1.2.6.2  thorpej 
      7  1.2.6.2  thorpej PATH=\
      8  1.2.6.2  thorpej $PATH:\
      9  1.2.6.2  thorpej ${root}/${target}/bin:\
     10  1.2.6.2  thorpej ${root}/bin
     11  1.2.6.2  thorpej export PATH
     12  1.2.6.2  thorpej 
     13  1.2.6.2  thorpej CC=${root}/bin/${target}-gcc;		export CC
     14  1.2.6.2  thorpej LD=${root}/bin/${target}-ld;		export LD
     15  1.2.6.2  thorpej CXX=${root}/bin/${target}-g++;		export CXX
     16  1.2.6.2  thorpej AS=${root}/bin/${target}-as;		export AS
     17  1.2.6.2  thorpej CPP=${root}/bin/${target}-cpp;		export CPP
     18  1.2.6.2  thorpej RANLIB=${root}/bin/${target}-ranlib;	export RANLIB
     19  1.2.6.2  thorpej AR=${root}/bin/${target}-ar;		export AR
     20  1.2.6.2  thorpej NM=${root}/bin/${target}-nm;		export NM
     21  1.2.6.2  thorpej SIZE=${root}/bin/${target}-size;	export SIZE
     22  1.2.6.2  thorpej STRIP=${root}/bin/${target}-strip;	export STRIP
     23  1.2.6.2  thorpej 
     24  1.2.6.2  thorpej STRIPFLAGS="--strip-debug";		export STRIPFLAGS
     25  1.2.6.2  thorpej STRIPPROG=${target}-strip;		export STRIPPROG
     26  1.2.6.2  thorpej 
     27  1.2.6.2  thorpej HOSTED_CC=cc;				export HOSTED_CC
     28  1.2.6.2  thorpej 
     29  1.2.6.2  thorpej TARGET=mipsel;				export TARGET
     30  1.2.6.2  thorpej MACHINE=playstation2;			export MACHINE
     31  1.2.6.2  thorpej MACHINE_ARCH=mipsel;			export MACHINE_ARCH
     32  1.2.6.2  thorpej MACHINE_CPU=mips;			export MACHINE_CPU
     33  1.2.6.2  thorpej 
     34  1.2.6.2  thorpej DESTDIR=${bsd_root};			export DESTDIR
     35  1.2.6.2  thorpej 
     36  1.2.6.2  thorpej MAKE="make";				 export MAKE
     37  1.2.6.2  thorpej #MAKE="make -f /work/cvsrep/sharesrc/share/mk/sys.mk -f Makefile"; export MAKE
     38  1.2.6.2  thorpej #MAKEFLAGS="-I /work/cvsrep/sharesrc/share/mk";	export MAKEFLAGS
     39  1.2.6.2  thorpej 
     40  1.2.6.2  thorpej set -x
     41  1.2.6.2  thorpej exec $MAKE "$@"
     42