home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 576.lha / DiskSpeed_v4.0 / MakeFile < prev    next >
Makefile  |  1991-09-01  |  2KB  |  64 lines

  1. #
  2. #                          DiskSpeed v4.0
  3. #                                by
  4. #                           Michael Sinz
  5. #
  6. #             Copyright (c) 1989,90,91 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. ##############################################################################
  19. #                                         #
  20. #    Reading legal mush can turn your brain into guacamole!             #
  21. #                                         #
  22. #        So here is some of that legal mush:                 #
  23. #                                         #
  24. # Permission is hereby granted to distribute this program's source         #
  25. # executable, and documentation for non-commercial purposes, so long as the  #
  26. # copyright notices are not removed from the sources, executable or         #
  27. # documentation.  This program may not be distributed for a profit without   #
  28. # the express written consent of the author Michael Sinz.             #
  29. #                                         #
  30. # This program is not in the public domain.                     #
  31. #                                         #
  32. # Fred Fish is expressly granted permission to distribute this program's     #
  33. # source and executable as part of the "Fred Fish freely redistributable     #
  34. # Amiga software library."                             #
  35. #                                         #
  36. # Permission is expressly granted for this program and it's source to be     #
  37. # distributed as part of the Amicus Amiga software disks, and the         #
  38. # First Amiga User Group's Hot Mix disks.                     #
  39. #                                         #
  40. ##############################################################################
  41. #
  42. # MakeFile for DiskSpeed
  43. #
  44.  
  45. #
  46. # ASM from Lattice
  47. .asm.o:
  48.     asm -iInclude: $*.asm
  49.  
  50. CFLAGS= -b1 -cfistq -d2 -ms0 -v -rr1 -O
  51.  
  52. .c.o:
  53.     @LC $(CFLAGS) $*
  54.  
  55. OBJS=    DiskSpeed.o DiskSpeedCPU.o RenderInfo.o MakeBoxes.o MKS_list.o
  56.  
  57. LIBS=    LIB:lcr.lib LIB:small.lib
  58.  
  59. DiskSpeed: DiskSpeed.ld
  60.     BLink FROM DiskSpeed.ld to DiskSpeed ND
  61.  
  62. DiskSpeed.ld: $(OBJS) $(LIBS)
  63.     BLink FROM LIB:c.o $(OBJS) TO DiskSpeed.ld LIB $(LIBS) DEFINE @_main=@_tinymain SD SC
  64.