home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / smart21b.zip / SAMPLES / SLINK / LINK.MAK < prev    next >
Text File  |  1991-11-19  |  600b  |  40 lines

  1. #
  2. #   LINK Application Make file
  3. #
  4.  
  5. #
  6. # Default compilation macros
  7. #
  8.  
  9. CC= cl -Zi -W3 -DLINT_ARGS -c -G2sw -Od -Zped
  10.  
  11. #
  12. # Default inference rules
  13. #
  14.  
  15. .c.obj:
  16.     $(CC) $*.c
  17.  
  18. .asm.obj:
  19.     $(ASM) $*.asm;
  20.  
  21. .rc.res:
  22.     rc -r $*.rc
  23.  
  24. #
  25. # Dependencies
  26. #
  27.  
  28. link.res: link.rc link.h link.ico
  29.  
  30. link.obj: link.c link.h
  31.  
  32. linkea.obj: linkea.c link.h
  33.  
  34. linkfile.obj: linkfile.c link.h
  35.  
  36. link.exe: link.obj linkfile.obj linkea.obj link.res link.def link.ico
  37.  link link linkfile linkea,link/codeview ,link/map, os2  slibcep/nod, link.def
  38.     markexe lfns link.exe
  39.     rc link.res
  40.