summaryrefslogblamecommitdiff
path: root/build/pmake
blob: d710cb8b2710f8f22463a09ee5f41fb6d17f81e8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
           
 
         

     

         


                                             
 
             
 
                                                            

             

                                   


                                
 
     
                                      
     
                        
 
#!/bin/bash

mkdir tmp
cd ..

dir=`pwd`

export CCACHE_DIR="${dir}/build/ccache/pmake"
export CC="ccache gcc"
export CXX="ccache g++"

export LANG=C

export CXXFLAGS="-g -pg -fno-inline -fno-omit-frame-pointer"

autoreconf -i
cd build/tmp
../../configure --prefix=$dir/run \
--datadir=$dir/run/share/games \
--bindir=$dir/run/bin \
--mandir=$dir/run/share/man

cd po
make -j16 update-gmo 2>../../make1.log
cd ..
make -j16 2>../make2.log