home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warptlk3.zip / TOOLKIT / SAMPLES / MM / DIVE / SHOW.MAK < prev    next >
Text File  |  1995-08-24  |  1KB  |  31 lines

  1. #**************************************************************************
  2. # *
  3. # * File Name        : SHOW.MAK
  4. # *
  5. # * Description      : Makefile for SHOW.EXE
  6. # *
  7. # *
  8. # * Copyright (C) 1992 IBM Corporation
  9. # *
  10. # *     DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  11. # *     sample code created by IBM Corporation. This sample code is not
  12. # *     part of any standard or IBM product and is provided to you solely
  13. # *     for  the purpose of assisting you in the development of your
  14. # *     applications.  The code is provided "AS IS", without
  15. # *     warranty of any kind.  IBM shall not be liable for any damages
  16. # *     arising out of your use of the sample code, even if they have been
  17. # *     advised of the possibility of such damages.
  18. # *
  19. # ****************************************************************************/
  20.  
  21. show.exe : show.res show.obj
  22.      link386  /NOE /NOI /DE /MAP show.obj,,,os2386.lib + mmpm2.lib,show.def
  23.      rc show.res show.exe
  24.  
  25. show.res: show.rc showdlg.dlg show.ico
  26.      rc -r show.rc
  27.  
  28. show.obj : show.c show.h
  29.      icc /C /Ss /Ti /O- show.c
  30.  
  31.