home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / igpb1.zip / amake4.mak < prev    next >
Text File  |  1993-09-28  |  2KB  |  61 lines

  1. #*******************************************************************************
  2. #* SAMPLE PROJECT: AMAKE4.DEP                                                  *
  3. #*                                                                             *
  4. #* COPYRIGHT:                                                                  *
  5. #* ----------                                                                  *
  6. #* Copyright (C) International Business Machines Corp., 1991,1992.             *
  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:06:06 on 09/22/93
  20.  
  21. # Make File Creation run in directory:
  22. #   IBM C Set++ target_directory\IBMCPP\SAMPLES\ICLUI\HELLO4;
  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: HELLO4.EXE \
  33.      AHELLOW4.RES
  34.  
  35. HELLO4.EXE:  \
  36.   ADIALOG4.OBJ \
  37.   AHELLOW4.OBJ \
  38.   AHELLOW4.RES \
  39.   AMAKE4.MAK
  40.    ICC.EXE @<<
  41.  /B" /pmtype:pm"
  42.  /Fe"HELLO4.EXE" dde4muii.lib dde4cci.lib 
  43. ADIALOG4.OBJ 
  44. AHELLOW4.OBJ
  45. <<
  46.    RC AHELLOW4.RES HELLO4.EXE
  47.  
  48. {.}.rc.res:
  49.    RC -r .\$*.RC
  50.  
  51. {.}.c.obj:
  52.    ICC.EXE /Gm /Gd /C   .\$*.c
  53.  
  54. {.}.cpp.obj:
  55.    ICC.EXE /Gm /Gd /C   .\$*.cpp
  56.  
  57. {.}.cxx.obj:
  58.    ICC.EXE /Gm /Gd /C   .\$*.cxx
  59.  
  60. !include AMAKE4.DEP
  61.