mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-03-05 05:09:30 -05:00
36 lines
583 B
Bash
36 lines
583 B
Bash
![]() |
#
|
||
|
## clean up all bits of libretroshare
|
||
|
echo make clobber
|
||
|
make clobber
|
||
|
#
|
||
|
## make the standard version (PPC)
|
||
|
echo make
|
||
|
make
|
||
|
#
|
||
|
LIB=libretroshare.a
|
||
|
LIB_PPC=libretroshare_ppc.a
|
||
|
LIB_X86=libretroshare_x86.a
|
||
|
|
||
|
MAC_SCRIPT="./scripts/config-macosx.mk"
|
||
|
|
||
|
echo cp lib/$LIB lib/$LIB_PPC
|
||
|
cp lib/$LIB lib/$LIB_PPC
|
||
|
|
||
|
echo make clobber
|
||
|
make clobber
|
||
|
|
||
|
echo make "MAC_I386_BUILD=1"
|
||
|
make "MAC_I386_BUILD=1"
|
||
|
|
||
|
echo cp lib/$LIB lib/$LIB_X86
|
||
|
cp lib/$LIB lib/$LIB_X86
|
||
|
|
||
|
# magic combine trick.
|
||
|
echo cd lib
|
||
|
cd lib
|
||
|
|
||
|
echo lipo -create libretroshare_*.a -output $LIB
|
||
|
lipo -create libretroshare_*.a -output $LIB
|
||
|
|
||
|
|