home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_03_06 / 3n06046b < prev    next >
Text File  |  1991-09-25  |  490b  |  27 lines

  1. # Listing 7
  2.  
  3. all: c_w_demo.exe
  4.  
  5. c_w_demo.obj: c_w_demo.c
  6.      cl /ASw /c /Gsw /W3 /Zp /nologo $*.c
  7.  
  8. cntr_wnd.obj: cntr_wnd.c
  9.      cl /ASw /c /Gsw /W3 /Zp /nologo $*.c
  10.  
  11. c_w_demo.res: c_w_demo.rc
  12.      rc -r c_w_demo.rc
  13.  
  14. c_w_demo.exe: c_w_demo.obj \
  15.           cntr_wnd.obj \
  16.           c_w_demo.def \
  17.           c_w_demo.res
  18.      link /A:16 /BA /NOD /NOE /NOL /nologo @<< 
  19. c_w_demo+
  20. cntr_wnd
  21. c_w_demo.exe
  22.  
  23. llibcew libw
  24. c_w_demo.def
  25. <<
  26.      rc c_w_demo.rc c_w_demo.exe
  27.