home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / SAMPLES / COMPILER / SAMPLE1B / MAKE1BS < prev    next >
Text File  |  1993-05-08  |  2KB  |  52 lines

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: MAKE1BS                                                     *
  3. #*                                                                             *
  4. #* COPYRIGHT:                                                                  *
  5. #* ----------                                                                  *
  6. #* Copyright (C) International Business Machines Corp., 1991,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
  21.  
  22. # Make File Creation run in directory:
  23. #   E:\IBMCPP\SAMPLES\SAMPLE1B;
  24.  
  25. .SUFFIXES:
  26.  
  27. .SUFFIXES: .c .cpp .cxx .rc
  28.  
  29. ALL: PMLINES.EXE SAMPLE1B.RES
  30.  
  31. PMLINES.EXE: PMLINES.OBJ SAMPLE1B.RES
  32.    icc.exe /Tdp /B"/PM:PM /SEGMENTS:512" pmlines.obj /Fepmlines.exe \
  33.       dde4muib.lib dde4muic.lib dde4cc.lib
  34.    RC SAMPLE1B.RES PMLINES.EXE
  35.  
  36. clean:
  37.          -Del  PMLINES.exe PMLINES.obj SAMPLE1B.res
  38.  
  39. {.}.rc.res:
  40.    RC -r .\$*.RC
  41.  
  42. {.}.c.obj:
  43.    ICC.EXE   .\$*.c
  44.  
  45. {.}.cpp.obj:
  46.    ICC.EXE /C /Gm+ .\$*.cpp
  47.  
  48. {.}.cxx.obj:
  49.    ICC.EXE /C /Gm+ .\$*.cxx
  50.  
  51. !include MAKE1BS.DEP
  52.