]> git.jsancho.org Git - lugaru.git/blobdiff - makemac.sh
Resolved merges of FindOggVorbis.cmake and CMakeLists.txt
[lugaru.git] / makemac.sh
index d7f8d117fe2c98ffd44fe89e5fcc4e4a7a948029..ac33ff144294da7040e041099dbd62b650f64012 100755 (executable)
@@ -6,8 +6,10 @@ 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"
 done