home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_03_05 / 3n05060b < prev    next >
Text File  |  1992-03-10  |  444b  |  16 lines

  1. Listing 8
  2.  
  3. #######################################################
  4. ##  makefile                                         ##
  5. ## -- Project file for scroll program.               ##
  6. #######################################################
  7. all:    scroll.exe
  8.  
  9. scroll.obj: scroll.c
  10.     cl -c -AM -G2w -Od -Zdpe -W3 scroll.c
  11.  
  12. scroll.exe: scroll.obj scroll.def scroll.rc
  13.     link /NOD/m scroll,,, libw mlibcew, scroll.def
  14.     rc scroll
  15.  
  16.