home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / SAMPLES / ICLUI / HELLO6 / AMAKE6.MAK < prev    next >
Text File  |  1993-09-28  |  2KB  |  68 lines

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: AMAKE6.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 09:57:26 on 09/22/93
  21.  
  22. # Make File Creation run in directory:
  23. #   IBM C Set++ target_directory\IBMCPP\SAMPLES\ICLUI\HELLO6;
  24.  
  25. # Assumed INCLUDE environment variable path:
  26. #   IBM C Set++ target_directory\include;
  27. #   Toolkit 2.1 include path;
  28.  
  29. .SUFFIXES:
  30.  
  31. .SUFFIXES: .c .cpp .cxx .ipf
  32.  
  33. ALL: HELLO6.EXE \
  34.      AHELLOW6.HLP
  35.  
  36. HELLO6.EXE:  \
  37.   ACOLORW6.OBJ \
  38.   ADIALOG6.OBJ \
  39.   AEARTHW6.OBJ \
  40.   AHELLOW6.OBJ \
  41.   ASPEEDW6.OBJ \
  42.   ATIMEHDR.OBJ \
  43.   AMAKE6.MAK
  44.    ICC.EXE @<<
  45.  /B" /pmtype:pm"
  46.  /Fe"HELLO6.EXE" dde4muii.lib dde4cci.lib 
  47. ACOLORW6.OBJ 
  48. ADIALOG6.OBJ 
  49. AEARTHW6.OBJ 
  50. AHELLOW6.OBJ 
  51. ASPEEDW6.OBJ 
  52. ATIMEHDR.OBJ
  53. <<
  54.  
  55. {.}.ipf.hlp:
  56.    IPFC .\$*.IPF
  57.  
  58. {.}.c.obj:
  59.    ICC.EXE /Gm /Gd /C   .\$*.c
  60.  
  61. {.}.cpp.obj:
  62.    ICC.EXE /Gm /Gd /C   .\$*.cpp
  63.  
  64. {.}.cxx.obj:
  65.    ICC.EXE /Gm /Gd /C   .\$*.cxx
  66.  
  67. !include AMAKE6.DEP
  68.