home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / JUMP.ZIP / JUMP.MAK < prev    next >
Text File  |  1991-07-25  |  197b  |  13 lines

  1. #makefile for jump
  2.  
  3. cp=cl /c /W3 /G2 /Od /AL /Zi /Zp
  4.  
  5. ALL:jump.exe
  6.  
  7. jump.obj: jump.c
  8.     $(cp) jump.c
  9.  
  10. jump.exe: jump.obj jump.def
  11.   link jump, jump /CO ,jump, os2 llibce  /NOD, jump
  12.  
  13.