You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
644 B

  1. #!/bin/sh
  2. ## Native PS3 compilation for Lol Engine -- Sam Hocevar <sam@hocevar.net>
  3. # This can't hurt
  4. make distclean
  5. set -e
  6. # Only on Windows
  7. if test "x${MSYSTEM}" = xMINGW32; then
  8. PATH="$PATH:./contrib/gtk-2.22.1/bin"
  9. M4PATH="./contrib/gtk-2.22.1/share/aclocal"
  10. export M4PATH # This looks necessary
  11. PKG_CONFIG_PATH="$PKG_CONFIG_PATH:`pwd`/contrib/gtkglarea-2.0.1/lib/pkgconfig"
  12. export PKG_CONFIG_PATH # This looks necessary, too
  13. fi
  14. # Bootstrap, configure and make
  15. # NOTE: ensure that $CELL_SDK is set and ppu-lv2-g++ is in the path
  16. ./bootstrap
  17. ./configure CXX=ppu-lv2-g++ CC=ppu-lv2-gcc ac_cv_exeext=.elf --host=none
  18. make -j6