home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prof_c / 06user / tstreply.mk < prev   
Encoding:
Text File  |  1988-08-11  |  302 b   |  14 lines

  1. # makefile for the TSTREPLY program
  2.  
  3. LLIB = c:\lib\local
  4. LIBS = $(LLIB)\sbios.lib $(LLIB)\sdos.lib $(LLIB)\sutil.lib
  5.  
  6. getreply.obj:    getreply.c
  7.     msc $*;
  8.  
  9. tstreply.obj:    tstreply.c
  10.     msc $*;
  11.  
  12. tstreply.exe:    tstreply.obj getreply.obj sound.obj $(LIBS)
  13.     link $* getreply sound, $*, nul, $(LIBS);
  14.