home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / os2tk21j / c / samples / dialog / dialog.ma_ / dialog.mak
Encoding:
Makefile  |  1993-03-12  |  1.1 KB  |  36 lines

  1. #
  2. #  Dialog Sample Makefile
  3. #
  4. #  Copyright (C) 1992 IBM Corporation
  5. #
  6. #      DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  7. #      sample code created by IBM Corporation. This sample code is not
  8. #      part of any standard or IBM product and is provided to you solely
  9. #      for  the purpose of assisting you in the development of your
  10. #      applications.  The code is provided "AS IS", without
  11. #      warranty of any kind.  IBM shall not be liable for any damages
  12. #      arising out of your use of the sample code, even if they have been
  13. #      advised of the possibility of such damages.                                                    *
  14. #
  15.  
  16. include ..\ibmsamp.inc
  17.  
  18. all:    DIALOG.EXE
  19.  
  20. # Resources
  21. #
  22. dialog.res: dialog.h dialog.ico dialog.rc ..\prodinfo.bmp
  23.     copy ..\prodinfo.bmp
  24.     rc -r dialog.rc
  25.     del prodinfo.bmp
  26.  
  27. # C files
  28. #
  29. dialog.obj: dialog.c dialog.h
  30.  
  31. # Main files: DIALOG.EXE
  32. #
  33. dialog.exe: dialog.mak dialog.def dialog.obj dialog.res
  34.     $(LINK) dialog, dialog, dialog, $(MTLIBS), dialog.def
  35.     rc -p -x dialog.res dialog.exe
  36.