home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 320.lha / DiskSpeed_v2.0 / MakeFile < prev    next >
Makefile  |  1989-12-09  |  3KB  |  72 lines

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