home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / SAMPLES / ICLCC / ICLCCXMP.MAK < prev    next >
Text File  |  1993-05-07  |  4KB  |  76 lines

  1. #******************************************************************************/
  2. #*                                                                            */
  3. #* COPYRIGHT:                                                                 */
  4. #* ----------                                                                 */
  5. #* Copyright (C) International Business Machines Corp., 1991,1992.            */
  6. #*                                                                            */
  7. #* DISCLAIMER OF WARRANTIES:                                                  */
  8. #* -------------------------                                                  */
  9. #* The following [enclosed] code is sample code created by IBM                */
  10. #* Corporation.  This sample code is not part of any standard IBM product     */
  11. #* and is provided to you solely for the purpose of assisting you in the      */
  12. #* development of your applications.  The code is provided "AS IS",           */
  13. #* without warranty of any kind.  IBM shall not be liable for any damages     */
  14. #* arising out of your use of the sample code, even if they have been         */
  15. #* advised of the possibility of such damages.                                */
  16. #*                                                                            */
  17. #******************************************************************************/
  18. # Main (not all) Dependies for ANIMALS :
  19. ANIMALS.exe  : ANIMALS.c
  20. ANIMALS.out  : ANIMALS.exe
  21.  
  22. # Main (not all) Dependies for DSKUSAGE :
  23. DSKUSAGE.exe : DSKUSAGE.c
  24. DSKUSAGE.out : DSKUSAGE.exe
  25.  
  26. # Main (not all) Dependies for EVENODD :
  27. EVENODD.exe  : EVENODD.c
  28. EVENODD.out  : EVENODD.exe
  29.  
  30. # Main (not all) Dependies for INTKYSET :
  31. INTKYSET.exe : INTKYSET.c
  32. INTKYSET.out : INTKYSET.exe
  33.  
  34. # Main (not all) Dependies for LETTERDQ :
  35. LETTERDQ.exe : LETTERDQ.c
  36. LETTERDQ.out : LETTERDQ.exe
  37.  
  38. # Main (not all) Dependies for PARCEL :
  39. PARCEL.exe   : PARCEL.c PARCEL.H
  40. PARCEL.out   : PARCEL.exe
  41.  
  42. # Main (not all) Dependies for PLANETS :
  43. PLANETS.exe  : PLANETS.c
  44. PLANETS.out  : PLANETS.exe
  45.  
  46. # Main (not all) Dependies for PUSHPOP :
  47. PUSHPOP.exe  : PUSHPOP.c
  48. PUSHPOP.out  : PUSHPOP.exe
  49.  
  50. # Main (not all) Dependies for SUMUP :
  51. SUMUP.exe    : SUMUP.c
  52. SUMUP.out    : SUMUP.exe
  53.  
  54. # Main (not all) Dependies for TRANSTAB :
  55. TRANSTAB.exe : TRANSTAB.c
  56. TRANSTAB.out : TRANSTAB.exe
  57.  
  58. # Main (not all) Dependies for WORDBAG :
  59. WORDBAG.exe  : WORDBAG.c
  60. WORDBAG.out  : WORDBAG.exe
  61.  
  62. # Main (not all) Dependies for WORDSEQ :
  63. WORDSEQ.exe  : WORDSEQ.c
  64. WORDSEQ.out  : WORDSEQ.exe
  65.  
  66. all          :  ANIMALS.exe DSKUSAGE.exe EVENODD.exe INTKYSET.exe LETTERDQ.exe PARCEL.exe PLANETS.exe PUSHPOP.exe SUMUP.exe TRANSTAB.exe WORDBAG.exe WORDSEQ.exe XMULTI.exe
  67.  
  68. run          :  ANIMALS.out DSKUSAGE.out EVENODD.out INTKYSET.out LETTERDQ.out PARCEL.out PLANETS.out PUSHPOP.out SUMUP.out TRANSTAB.out WORDBAG.out WORDSEQ.out XMULTI.out
  69.  
  70. clean        :
  71.          -Del  ANIMALS.obj DSKUSAGE.obj EVENODD.obj INTKYSET.obj LETTERDQ.obj PARCEL.obj PLANETS.obj PUSHPOP.obj SUMUP.obj TRANSTAB.obj WORDBAG.obj WORDSEQ.obj XMULTI1.obj XMULTI2.obj  2>nul
  72.          -Del  ANIMALS.exe DSKUSAGE.exe EVENODD.exe INTKYSET.exe LETTERDQ.exe PARCEL.exe PLANETS.exe PUSHPOP.exe SUMUP.exe TRANSTAB.exe WORDBAG.exe WORDSEQ.exe XMULTI.exe  2>nul
  73.          -Del  ANIMALS.out DSKUSAGE.out EVENODD.out INTKYSET.out LETTERDQ.out PARCEL.out PLANETS.out PUSHPOP.out SUMUP.out TRANSTAB.out WORDBAG.out WORDSEQ.out XMULTI.out  2>nul
  74.          -Del  tempinc\*.cpp tempinc\*.obj  2>nul
  75. #
  76.