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

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: PMLINES.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 13:37:12 on 02/28/93
  21.  
  22. # Make File Creation run in directory:
  23. #   IBM C Set++ target_directory\WKFRAME\PMLINES;
  24.  
  25. .SUFFIXES:
  26.  
  27. .SUFFIXES: .c .cpp .cxx .rc
  28.  
  29. ALL: PMLINES.EXE \
  30.      PMLINES.RES
  31.  
  32. PMLINES.EXE:  \
  33.   PMLINES.OBJ \
  34.   PMLINES.RES \
  35.   PMLINES.MAK
  36.    ICC.EXE @<<
  37.  /B" /pmtype:pm /align:16 /noe"
  38.  /Fe"PMLINES.EXE" PMLINES.OBJ
  39. <<
  40.    RC PMLINES.RES PMLINES.EXE
  41.  
  42. {.}.rc.res:
  43.    RC -r .\$*.RC
  44.  
  45. {.}.c.obj:
  46.    ICC.EXE /O /Rn /C   .\$*.c
  47.  
  48. {.}.cpp.obj:
  49.    ICC.EXE /O /Rn /C   .\$*.cpp
  50.  
  51. {.}.cxx.obj:
  52.    ICC.EXE /O /Rn /C   .\$*.cxx
  53.  
  54. !include PMLINES.DEP
  55.