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

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