]> git.jsancho.org Git - lugaru.git/blobdiff - makemac.sh
Upgraded zlib from 1.2.3 to 1.2.5 and moved it to Dependencies.
[lugaru.git] / makemac.sh
index f02e18921f71cdb0f4444cb743e36aa9fdcf44b9..1afe20286ee027f48f1d3264794ddc826de81377 100755 (executable)
@@ -6,13 +6,13 @@ set -x
 NCPU=`sysctl -n hw.ncpu`
 
 for arch in ppc i386 x86_64 ; do
-    make macosx=true macosx_arch=$arch clean
-    make macosx=true macosx_arch=$arch -j$NCPU
+    make -f makefile.old macosx=true macosx_arch=$arch clean
+    make -f makefile.old macosx=true macosx_arch=$arch -j$NCPU
     # We always strip here. For debugging, you should do "make" directly.
-    strip run/lugaru-$arch
-    BINS="$BINS run/lugaru-$arch"
+    strip Data/lugaru-$arch
+    BINS="$BINS Data/lugaru-$arch"
 done
 
-rm -f run/lugaru-bin
-lipo -create -o run/lugaru-bin $BINS
+rm -f Data/lugaru-bin
+lipo -create -o Data/lugaru-bin $BINS