home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / larcos.zip / EXAMPLES.ZIP / LHELLO.MAK < prev    next >
Text File  |  1994-05-15  |  669b  |  23 lines

  1. #===============================================================================
  2. # LHELLO.MAK
  3. #
  4. # LARC_S "LARC Examples"
  5. # LARC_D "Program Make file"
  6. # LARC_V "100"
  7. #
  8. # Revision history:
  9. # kbg 05/15/94 100 - Created.
  10. #
  11. #===============================================================================
  12. CC  = cl -c -AL -G2sw -Od -W3 -Zl -Zpie
  13.  
  14. lhello.exe : lhello.obj lhello.res
  15.     link /co /map /nopackcode /onerror:noexe /NOD /NOE /AL:16 lhello,lhello.exe,lhello.map,OLDNAMES+llibcew+libw,lhello.def
  16.     rc -K lhello.res lhello.exe
  17.  
  18. lhello.obj : lhello.c lhello.h
  19.     $(CC) lhello.c
  20.  
  21. lhello.res : lhello.rc lhello.h lhello.ico
  22.     rc -r lhello.rc
  23.