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

  1. # makefile for the MX program
  2.  
  3. LINC=c:\include\local
  4. LLIB=c:\lib\local
  5.  
  6. mx.obj:        mx.c $(LINC)\std.h $(LINC)\printer.h
  7.     msc $*;
  8.  
  9. mx.exe:        mx.obj $(LLIB)\sutil.lib
  10.     link $*, $*, nul, $(LLIB)\sutil;
  11.