home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / WKFRAME / UILINES / UILINES.MAK < prev    next >
Text File  |  1993-10-08  |  2KB  |  56 lines

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: UILINES.MAK                                                 *
  3. #*                                                                             *
  4. #* COPYRIGHT:                                                                  *
  5. #* ----------                                                                  *
  6. #* Copyright (C) International Business Machines Corp., 1991,1992,1993.        *
  7. #*                                                                             *
  8. #* DISCLAIMER OF WARRANTIES:                                                   *
  9. #* -------------------------                                                   *
  10. #* The following [enclosed] code is sample code created by IBM                 *
  11. #* Corporation.  This sample code is not part of any standard IBM product      *
  12. #* and is provided to you solely for the purpose of assisting you in the       *
  13. #* development of your applications.  The code is provided "AS IS",            *
  14. #* without warranty of any kind.  IBM shall not be liable for any damages      *
  15. #* arising out of your use of the sample code, even if they have been          *
  16. #* advised of the possibility of such damages.                                 *
  17. #*                                                                             *
  18. #*******************************************************************************
  19.  
  20. # IBM Developer's Workframe/2 Make File Creation run at 18:10:47 on 01/16/92
  21.  
  22. # Make File Creation run in directory:
  23. #   IBM C Set++ target_directory\WKFRAME\UILINES;
  24.  
  25. .SUFFIXES:
  26.  
  27. .SUFFIXES: .c .cpp .cxx .rc
  28.  
  29. ALL: PMLINES.EXE \
  30.      SAMPLE1B.RES
  31.  
  32. PMLINES.EXE:  \
  33.   PMLINES.OBJ \
  34.   SAMPLE1B.RES \
  35.   UILINES.MAK
  36.    ICC.EXE @<<
  37.  /B" /pmtype:pm"
  38.  /Fe"pmlines.exe" dde4muii.lib dde4cci.lib dde4mbsi.lib
  39. PMLINES.OBJ
  40. <<
  41.    RC SAMPLE1B.RES PMLINES.EXE
  42.  
  43. {.}.rc.res:
  44.    RC -r .\$*.RC
  45.  
  46. {.}.c.obj:
  47.    ICC.EXE /Gm /Gd /C   .\$*.c
  48.  
  49. {.}.cpp.obj:
  50.    ICC.EXE /Gm /Gd /C   .\$*.cpp
  51.  
  52. {.}.cxx.obj:
  53.    ICC.EXE /Gm /Gd /C   .\$*.cxx
  54.  
  55. !include UILINES.DEP
  56.