Makefile revision 27707b3a139fce5a9bd9f7f3fdaff3f8a4d6a930
1testit: testit.i386 testit.x86_64 2 lipo -create -o testit testit.i386 testit.x86_64 3 4testit.i386: testit.i386.o 5 gcc -arch i386 -o testit.i386 testit.i386.o 6 7testit.x86_64: testit.x86_64.o 8 gcc -arch x86_64 -o testit.x86_64 testit.x86_64.o 9 10testit.i386.o: main.c 11 gcc -g -O0 -arch i386 -c -o testit.i386.o main.c 12 13testit.x86_64.o: main.c 14 gcc -g -O0 -arch x86_64 -c -o testit.x86_64.o main.c 15 16clean: 17 rm -rf testit* *~ 18