home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / BOUNDUTI.ZIP / MAKEFILE < prev    next >
Text File  |  1990-08-16  |  255b  |  21 lines

  1. #
  2. #  NMAKE file to build bound versions of OS/2 Utilities
  3. #
  4. #                written 8/15/90 by M. Mackey
  5. #
  6.  
  7. CFLAGS=/Gs /Fb /Lp
  8. CC=cl
  9. ALL:mv.exe grep.exe mrm.exe
  10.  
  11. .c.exe :
  12.     $(CC) $(CFLAGS) $*.c
  13.  
  14. mv.exe : mv.c
  15.  
  16. grep.exe : grep.c
  17.  
  18. mrm.exe : mrm.c
  19.  
  20.  
  21.