home *** CD-ROM | disk | FTP | other *** search
/ developer.apple.com / developer.apple.com.tar / developer.apple.com / tools / CarbonExample.dmg / CarbonExample / test.mk < prev    next >
Text File  |  2004-06-30  |  333b  |  23 lines

  1. test: test.o
  2.     gcc -g -v -framework CoreServices -o test test.c
  3. test.o: test.c
  4.     gcc -g -v $*.c
  5. clean:
  6.     rm test
  7. asm:
  8.     gcc -v -S -g *.c
  9. asm0:
  10.     gcc -v -S -O0 *.c
  11. asm1:
  12.     gcc -v -S -O1 *.c
  13. asm2:
  14.     gcc -v -S -O2 *.c
  15. asm3:
  16.     gcc -v -S -O3 *.c
  17. asmsize:
  18.     gcc -v -S -Os *.c
  19. asmfast:
  20.     gcc -v -S -fast *.c
  21. asmunroll:
  22.     gcc -v -S -floop-optimize *.c
  23.