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

  1. # makefile for the SB_TEST driver program
  2.  
  3. MODEL = S
  4. LLIB = c:\lib\local
  5. LINC = c:\include\local
  6. LIBS = $(LLIB)\$(MODEL)sbuf.lib $(LLIB)\$(MODEL)bios.lib $(LLIB)\$(MODEL)dos.lib
  7.  
  8. sb_test.obj:    sb_test.c $(LINC)\sbuf.h sb_test.h
  9.  
  10. sb_test.exe:    sb_test.obj $(LIBS)
  11.     link $*, $*, nul, $(LIBS);
  12.