home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / 08file / tee.mk < prev    next >
Encoding:
Text File  |  1988-08-11  |  238 b   |  13 lines

  1. # makefile for TEE program
  2.  
  3. LIB=c:\lib
  4. LLIB=c:\lib\local
  5.  
  6. # --- program module ---
  7. tee.obj:    tee.c
  8.     msc $*;
  9.  
  10. # --- the executable program ---
  11. tee.exe:    tee.obj $(LLIB)\sutil.lib
  12.     link $* $(LIB)\ssetargv, $*, nul, $(LLIB)\sutil;
  13.