home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / disolve.zip / WORDS < prev    next >
Text File  |  1990-06-19  |  492b  |  29 lines

  1. # Copyright 1990 by William R. Ross
  2. #
  3. #  Standard command line definitions
  4. #
  5.  
  6. cp=qcl -d -c -AS -Gsw -Os -Zpe -W2
  7.  
  8. #
  9. #  Standard inference rules
  10. #
  11. .c.obj:
  12.     $(cp) $*.c
  13.  
  14. #
  15. #  The C File List
  16. #
  17.  
  18. words.obj: words.c words.h fader.h
  19.  
  20. fader.obj: fader.c fader.h words.h
  21.  
  22. words.res: words.rc words.h
  23.     rc -r words.rc
  24.  
  25. words.exe: words.obj words.res words.def fader.obj
  26.     link words+fader,/align:16,/map,slibw slibcew /NOD,words.def
  27.     mapsym words
  28.     rc words.res
  29.