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

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: AMAKE3.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. # IBM Developer's Workframe/2 Make File Creation run at 10:02:43 on 09/22/93
  20.  
  21. # Make File Creation run in directory:
  22. #   IBM C Set++ target_directory\IBMCPP\SAMPLES\ICLUI\HELLO3;
  23.  
  24. # Assumed INCLUDE environment variable path:
  25. #   IBM C Set++ target_directory\include;
  26. #   Toolkit 2.1 include path;
  27.  
  28. .SUFFIXES:
  29.  
  30. .SUFFIXES: .c .cpp .cxx .rc
  31.  
  32. ALL: HELLO3.EXE \
  33.      AHELLOW3.RES
  34.  
  35. HELLO3.EXE:  \
  36.   AHELLOW3.OBJ \
  37.   AHELLOW3.RES \
  38.   AMAKE3.MAK
  39.    ICC.EXE @<<
  40.  /B" /pmtype:pm"
  41.  /Fe"HELLO3.EXE" dde4muii.lib dde4cci.lib 
  42. AHELLOW3.OBJ
  43. <<
  44.    RC AHELLOW3.RES HELLO3.EXE
  45.  
  46. {.}.rc.res:
  47.    RC -r .\$*.RC
  48.  
  49. {.}.c.obj:
  50.    ICC.EXE /Gm /Gd /C   .\$*.c
  51.  
  52. {.}.cpp.obj:
  53.    ICC.EXE /Gm /Gd /C   .\$*.cpp
  54.  
  55. {.}.cxx.obj:
  56.    ICC.EXE /Gm /Gd /C   .\$*.cxx
  57.  
  58. !include AMAKE3.DEP
  59.