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

  1. #*┌──────────────────────────────────────────────────────────────────────────┐*/
  2. #*│                                                                          │*/
  3. #*│ SAMPLE PROJECT: MAHJONGG.MAK                                             │*/
  4. #*│                                                                          │*/
  5. #*│ COPYRIGHT:                                                               │*/
  6. #*│ ----------                                                               │*/
  7. #*│  Copyright (C) International Business Machines Corp., 1991,1992,1993.    │*/
  8. #*│                                                                          │*/
  9. #*│DISCLAIMER OF WARRANTIES:                                                 │*/
  10. #*│-------------------------                                                 │*/
  11. #*│ The following [enclosed] code is sample code created by IBM Corporation. │*/
  12. #*│ This sample code is not part of any standard IBM product and is provided │*/
  13. #*│ to you solely for the purpose of assisting you in the development of     │*/
  14. #*│ your applications.  The code is provided "AS IS", without warranty of    │*/
  15. #*│ any kind.  IBM shall not be liable for any damages arising out of your   │*/
  16. #*│ use of the sample code, even if they have been advised of the            │*/
  17. #*│ possibility of such damages.                                             │*/
  18. #*│                                                                          │*/
  19. #*└──────────────────────────────────────────────────────────────────────────┘*/
  20.  
  21. # IBM Developer's Workframe/2 Make File Creation run at 15:07:07 on 01/15/92
  22.  
  23. # Make File Creation run in directory:
  24. #   IBM C Set++ target_directory\WKFRAME\MAHJONGG;
  25.  
  26. .SUFFIXES:
  27.  
  28. .SUFFIXES: .c .cpp .cxx .rc .ipf
  29.  
  30. ALL: MAHJONGG.EXE \
  31.      MAHJONGG.HLP \
  32.      MAHJONGG.RES
  33.  
  34. MAHJONGG.EXE:  \
  35.   MAHJONGG.OBJ \
  36.   MAHJONGG.RES \
  37.   TILE.OBJ \
  38.   MAHJONGG.MAK
  39.    ICC.EXE @<<
  40.  /Fe"MAHJONGG.EXE" /Fm"MAHJONGG.MAP" MAHJONGG.DEF MAHJONGG.OBJ TILE.OBJ
  41. <<
  42.    RC MAHJONGG.RES MAHJONGG.EXE
  43.  
  44. {.}.rc.res:
  45.    RC -r .\$*.RC
  46.  
  47. {.}.ipf.hlp:
  48. # following commands were changed by hand to create intermediate file
  49.    ICC.EXE /Ss /DIPF /Pe .\$*.ipf
  50.    IPFC .\$*.i
  51.  
  52. {.}.c.obj:
  53.    ICC.EXE /Ss /O /C   .\$*.c
  54.  
  55. {.}.cpp.obj:
  56.    ICC.EXE /Ss /O /C   .\$*.cpp
  57.  
  58. {.}.cxx.obj:
  59.    ICC.EXE /Ss /O /C   .\$*.cxx
  60.  
  61. !include MAHJONGG.DEP
  62.