home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wfedit.zip / wfedit.mak < prev    next >
Text File  |  1993-12-02  |  3KB  |  51 lines

  1. #*+--------------------------------------------------------------------------+*
  2. #*|WF/2 Editor DDE sample                                                    |*
  3. #*|--------------------------------------------------------------------------|*
  4. #*|                                                                          |*
  5. #*| PROGRAM NAME: WFEDIT                                                     |*
  6. #*| -------------                                                            |*
  7. #*|                                                                          |*
  8. #*| COPYRIGHT:                                                               |*
  9. #*| ----------                                                               |*
  10. #*|  Copyright (C) International Business Machines Corp., 1991,1992,1993.    |*
  11. #*|                                                                          |*
  12. #*| DISCLAIMER OF WARRANTIES:                                                |*
  13. #*| -------------------------                                                |*
  14. #*| The following [enclosed] code is sample code created by IBM              |*
  15. #*| Corporation.  This sample code is not part of any standard IBM product   |*
  16. #*| and is provided to you solely for the purpose of assisting you in the    |*
  17. #*| development of your applications.  The code is provided "AS IS",         |*
  18. #*| without warranty of any kind.  IBM shall not be liable for any damages   |*
  19. #*| arising out of your use of the sample code, even if they have been       |*
  20. #*| advised of the possibility of such damages.                              |*
  21. #*|                                                                          |*
  22. #*| REVISION LEVEL: 2.1                                                      |*
  23. #*| -------------------                                                      |*
  24. #*|                                                                          |*
  25. #*|  This program illustrates the editor side of the DDE and D&D protocols   |*
  26. #*|  used by WorkFrame/2 version 1.x and 2.1.                                |*
  27. #*|                                                                          |*
  28. #*|  You can send any questions through Internet at KEHM@VNET.IBM.COM        |*
  29. #*|                                                                          |*
  30. #*+--------------------------------------------------------------------------+*
  31. .SUFFIXES:
  32.  
  33. .SUFFIXES: .c .rc
  34.  
  35. ALL: wfedit.EXE \
  36.      wfedit.RES
  37.  
  38. wfedit.EXE: wfedit.OBJ  wfedit.RES
  39.    link386 /CO /PM:PM /ST:8096 wfedit.OBJ, wfedit.EXE;
  40.    RC wfedit.RES wfedit.EXE
  41.  
  42. .rc.res:
  43.    RC -r .\$*.RC
  44.  
  45. .c.obj:
  46.    ICC.EXE /Sp1 /Ss /C .\$*.c
  47.  
  48. wfedit.RES:  wfedit.RC  wfedit.h
  49.  
  50. wfedit.OBJ:  wfedit.C wfedit.H wkfedit.H
  51.