home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12324.ZIP / SAMPLE.MAK < prev   
Text File  |  1989-03-30  |  417b  |  20 lines

  1. #=========================================
  2. # Sample makefile
  3. #=========================================
  4.  
  5. cp=cl -c -ALu -G2s -Od -Zpei
  6. cv=/CO
  7.  
  8. .c.obj:
  9.     $(cp) $*.c
  10.  
  11. #=========================================
  12. #  Dependencies
  13. #=========================================
  14.  
  15. sample.obj: sample.c
  16.     $(cp) sample.c
  17.  
  18. sample.exe: sample.obj
  19.     link $(cv) sample.obj,sample.exe,,/NOD LLIBCE OS2,sample.def
  20.