mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
11 lines
325 B
Bash
11 lines
325 B
Bash
|
#!/bin/sh -x
|
||
|
export PS3DEV=/usr/local/ps3dev
|
||
|
export PSL1GHT=$PS3DEV
|
||
|
export PKG_CONFIG_LIBDIR=$PS3DEV/portlibs/ppu/lib/pkgconfig
|
||
|
export PATH=$PS3DEV/spu/bin:$PS3DEV/ppu/bin:$PS3DEV/bin:$PATH
|
||
|
../configure --host=powerpc64-ps3-elf \
|
||
|
--disable-sdl-cd \
|
||
|
--with-endian=big \
|
||
|
SDL_CONFIG=$PS3DEV/portlibs/ppu/bin/sdl-config \
|
||
|
$*
|