rename
[jabaws.git] / binaries / linux_x64 / fasta34 / make_osx_univ.sh
1 #!/bin/csh
2
3 make -f Makefile.os_x all
4 make -f Makefile.os_x install
5 make -f Makefile.os_x clean-up
6
7 make -f Makefile.os_x86 all
8 make -f Makefile.os_x86 install
9 make -f Makefile.os_x86 clean-up
10
11 foreach n ( ppc/* )
12 set f=$n:t
13 lipo -create ppc/$f i386/$f -output bin/$f
14 echo "Universal $f built"
15 end
16 echo "Done!"
17