home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / more / drive_utils / benchmark / diskspeed / makefile < prev    next >
Makefile  |  1990-02-03  |  3KB  |  78 lines

  1. #
  2. #                          DiskSpeed v3.0
  3. #                                by
  4. #                           Michael Sinz
  5. #
  6. #             Copyright (c) 1989 by MKSoft Development
  7. #
  8. #            MKSoft Development
  9. #            163 Appledore Drive
  10. #            Downingtown, PA 19335
  11. #
  12. # Yes, this is yet another disk speed testing program, but with a few
  13. # differences.  It was designed to give the most accurate results of the
  14. # true disk performance in the system.  For this reason many of
  15. # DiskSpeed's results may look either lower or higher than current disk
  16. # performance tests.
  17. #
  18. # This program was thrown together in a few hours because I needed more
  19. # accurate and consistent results for disk performance as seen from the
  20. # application's standpoint.  This program has now served its purpose and
  21. # I am now giving it to the rest of the Amiga world to play with as long
  22. # as all of the files remain together in unmodified form.  (That is, the
  23. # files DiskSpeed, DiskSpeed.info, DiskSpeed.c, DiskSpeedWindow.c,
  24. # DiskSpeedWindow.h, MakeBoxes.c, MakeBoxes.h, StandardGadgets.c,
  25. # StandardGadgets.h, RenderInfo.c, RenderInfo.h, DiskSpeed.doc, and
  26. # MakeFile)
  27. #
  28. # Version 2.0 of this program added a few features and cleaned up the
  29. # user interface.  I hope you like this...
  30. #
  31. # Version 3.0 of this program added the performance stress and cleaned up
  32. # some parts of the older code.  (Fix to RenderInfo.c)
  33. #
  34. ##############################################################################
  35. #                                         #
  36. #    Reading legal mush can turn your brain into guacamole!             #
  37. #                                         #
  38. #        So here is some of that legal mush:                 #
  39. #                                         #
  40. # Permission is hereby granted to distribute this program's source         #
  41. # executable, and documentation for non-commercial purposes, so long as the  #
  42. # copyright notices are not removed from the sources, executable or         #
  43. # documentation.  This program may not be distributed for a profit without   #
  44. # the express written consent of the author Michael Sinz.             #
  45. #                                         #
  46. # This program is not in the public domain.                     #
  47. #                                         #
  48. # Fred Fish is expressly granted permission to distribute this program's     #
  49. # source and executable as part of the "Fred Fish freely redistributable     #
  50. # Amiga software library."                             #
  51. #                                         #
  52. # Permission is expressly granted for this program and it's source to be     #
  53. # distributed as part of the Amicus Amiga software disks, and the         #
  54. # First Amiga User Group's Hot Mix disks.                     #
  55. #                                         #
  56. ##############################################################################
  57. #
  58. # MakeFile for DiskSpeed
  59. #
  60.  
  61. CFLAGS= -b1 -cfirst -ms0 -rr1 -v -w
  62.  
  63. .c.o:
  64.     @LC $(CFLAGS) $*
  65.  
  66. DiskSpeed: DiskSpeed.o StandardGadgets.o MakeBoxes.o DiskSpeedWindow.o RenderInfo.o
  67.     @BLink FROM LIB:c.o+DiskSpeed.o+DiskSpeedWindow.o+StandardGadgets.o+MakeBoxes.o+RenderInfo.o TO DiskSpeed LIB LIB:lcsr.lib LIB:amiga.lib DEFINE @_main=@_tinymain SMALLDATA SMALLCODE
  68.  
  69. DiskSpeed.o: DiskSpeed.c RenderInfo.h DiskSpeedWindow.h
  70.  
  71. StandardGadgets.o: StandardGadgets.c StandardGadgets.h RenderInfo.h MakeBoxes.h
  72.  
  73. MakeBoxes.o: MakeBoxes.c MakeBoxes.h
  74.  
  75. DiskSpeedWindow.o: DiskSpeedWindow.c DiskSpeedWindow.h RenderInfo.h StandardGadgets.h MakeBoxes.h
  76.  
  77. RenderInfo.o: RenderInfo.c RenderInfo.h
  78.