home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / TOOLKIT / PM / DRAGDROP / DRAGDROP.MAK < prev    next >
Makefile  |  1994-11-17  |  2KB  |  51 lines

  1. #===================================================================
  2. # Makefile for DRAGDROP Sample
  3. #
  4. #  Copyright (C) 1991, 1994 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. #
  17.  
  18. include ..\..\ibmsamp.inc
  19.  
  20. all:    DRAGDROP.EXE            DRAGDROP.HLP
  21.  
  22. OBJS    =       dragdrop.obj dragdrag.obj dragheap.obj draghelp.obj
  23.  
  24. # Resources
  25. #
  26. dragdrop.res:      dragdrop.rc dragdrop.ico dragdrop.ptr dragdrop.h \
  27.                                 dragdrop.dlg draghelp.rc draghelp.h
  28.         copy ..\..\prodinfo.bmp
  29.         rc -r dragdrop.rc
  30.         del prodinfo.bmp
  31.  
  32. # C files
  33. #
  34. dragdrop.obj:      dragdrop.c dragdrop.h
  35.  
  36. draghelp.obj:      draghelp.c dragdrop.h draghelp.h
  37.  
  38. dragheap.obj:      dragheap.c dragdrop.h
  39.  
  40. dragdrag.obj:      dragdrag.c dragdrop.h
  41.  
  42. # Main files:  DRAGDROP.EXE
  43. #
  44. dragdrop.exe:      dragdrop.mak dragdrop.def $(OBJS) dragdrop.res
  45.     $(LINK) $(OBJS), dragdrop, dragdrop, $(LIBS), dragdrop.def
  46.     rc -p -x dragdrop.res dragdrop.exe
  47.  
  48. dragdrop.hlp:   dragdrop.ipf dragfile.ipf draghelp.ipf dragdlg.ipf \
  49.                 dragmenu.ipf dragwnd.ipf
  50.  
  51.