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

  1. # makefile for the SHOW program
  2.  
  3. LINC = c:\include\local
  4. LIB = c:\lib
  5. LLIB = c:\lib\local
  6.  
  7. show.obj:    show.c $(LINC)\std.h
  8.     msc $*;
  9.  
  10. showit.obj:    showit.c $(LINC)\std.h
  11.     msc $*;
  12.  
  13. show.exe:    show.obj showit.obj $(LLIB)\sutil.lib
  14.     link $* showit $(LIB)\ssetargv, $*, nul, $(LLIB)\sutil;
  15.