pmake 438 B

12345678910111213141516171819202122232425262728
  1. #!/bin/bash
  2. mkdir tmp
  3. cd ..
  4. dir=`pwd`
  5. export CCACHE_DIR="${dir}/build/ccache/pmake"
  6. export CC="ccache gcc"
  7. export CXX="ccache g++"
  8. export LANG=C
  9. export CXXFLAGS="-g -pg -fno-inline -fno-omit-frame-pointer"
  10. autoreconf -i
  11. cd build/tmp
  12. ../../configure --prefix=$dir/run \
  13. --datadir=$dir/run/share/games \
  14. --bindir=$dir/run/bin \
  15. --mandir=$dir/run/share/man
  16. cd po
  17. make -j16 update-gmo 2>../../make1.log
  18. cd ..
  19. make -j16 2>../make2.log