home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 099 / SCALE.ZIP / SCALETST < prev    next >
Text File  |  1993-01-12  |  411b  |  16 lines

  1. # Build a simple test program to test linear scaling algorithms.
  2. # This makefile is designed to work with:
  3. #       Microsoft C Compiler V5.1
  4. #       Microsoft linker
  5. #       Microsoft make (ugh)
  6.  
  7. scaletst.obj:  scaletst.c scale.h
  8.         cl -c -Od -W3 scaletst.c
  9.  
  10. scale.obj:  scale.c scale.h
  11.         cl -c -Od -W3 scale.c
  12.  
  13. scaletst.exe:  scaletst.obj scale.obj
  14.         link scaletst + scale;
  15.