all: c++ ppc.cxx -o ppc -O2 -static -ffast-math asm: nasm -f elf -o ppc.o ppc.asm c++ ppc.cxx -o ppc ppc.o -O2 -static -ffast-math -D ROTASM rm ppc.o sse: c++ ppc.cxx -o ppc -O2 -static -msse2 -mfpmath=sse -ffast-math single: c++ ppc.cxx -o ppc -O2 -static -msse2 -mfpmath=sse -ffast-math -D SINGLE