home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / 04stdlib / notes.mk next >
Encoding:
Text File  |  1988-08-11  |  247 b   |  16 lines

  1. # makefile for the NOTES program
  2.  
  3. LLIB=c:\lib\local
  4.  
  5. notes1.obj:    notes1.c
  6.     msc $*;
  7.  
  8. notes1.exe:    notes1.obj 
  9.     link $*, $*, nul, $(LLIB)\sutil;
  10.  
  11. notes2.obj:    notes2.c
  12.     msc $*;
  13.  
  14. notes2.exe:    notes2.obj 
  15.     link $*, $*, nul, $(LLIB)\sutil;
  16.