home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / msj / msjv2_5 / msc5 / c_gdemo.mak next >
Encoding:
Text File  |  1989-03-02  |  232 b   |  18 lines

  1.  
  2.  
  3. # Figure 8
  4. # ========
  5.  
  6.  
  7. # makefile for the GDEMO program
  8.  
  9. .c.obj:
  10.     cl -c -W2 -Ze -AL $*.c
  11.  
  12. gdemo.obj:    gdemo.c
  13.  
  14. message.obj:    message.c
  15.  
  16. gdemo.exe:    gdemo.obj message.obj 
  17.         link gdemo message, gdemo, nul, graphics;
  18.