home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / diskutil / ff32src / makefile < prev    next >
Makefile  |  1993-08-05  |  2KB  |  55 lines

  1. # Makefile for FastFlop
  2.  
  3. #    makefile is FastFlop, which speeds up your Atari ST's floppy disks
  4. #    Copyright (C) 1989  by Robert Fischer
  5. #
  6. #    This program costs no money; you can redistribute it and/or modify it
  7. #    under the terms of the Lynxware General License as published by Robert
  8. #    Fischer; either version 1, or (at your option) any later version. 
  9. #
  10. #   This program is distributed in the hope that it will be useful,
  11. #   but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. #   Lynxware General License for more details.
  14. #
  15. #   You should have received a copy of the Lynxware General License
  16. #   along with this program; if not, write to the author.
  17. #
  18. #   To contact the author, call or write:
  19. #       Robert Fischer
  20. #       80 Killdeer Road
  21. #       Hamden, CT    06517
  22. #       (203) 288-9599
  23. #        E-mail: fischer-robert@cs.yale.edu
  24.  
  25. all : disktest.tos fflop.prg dspeed.ttp
  26.     echo All done
  27.  
  28. dspeed.ttp : dspeed.c
  29.     cc -o dspeed.ttp dspeed.c
  30.     strip dspeed.ttp
  31.  
  32. disktest.tos : disktest.c
  33.     cc -o disktest.tos disktest.c
  34.     strip disktest.tos
  35.  
  36. fflop.prg : fflop.o flop.o
  37.     cc -VGEM -o fflop.prg fflop.o flop.o
  38.  
  39. flop.o : flop.s
  40.     mac -fmu flop.s
  41.  
  42. fflop.o : fflop.c
  43.     cc -c fflop.c
  44.  
  45. ff32src.zoo :  fflop.c flop.s makefile fastflop.doc rebuild.doc \
  46.         disktest.c dspeed.c d:\ul\lynxlic.doc stddef.h
  47.     zoo -add ff32src.zoo $?
  48.  
  49. ff32bin.zoo : fastflop.doc fflop.prg disktest.c disktest.tos \
  50.         dspeed.ttp d:\ul\lynxlic.doc c:\gem\format.prg c:\gem\format.rsc
  51.     zoo -add ff32bin.zoo $?
  52.  
  53. zoos : ff32bin.zoo ff32src.zoo
  54.     echo Done
  55.