home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / TOOLKIT / OS2 / HANOI / HANOI.MAK < prev    next >
Makefile  |  1994-11-17  |  3KB  |  71 lines

  1. #===================================================================
  2. #
  3. #   HANOI.MAK - Hanoi Make file
  4. #
  5. #  Copyright (C) 1992, 1994 IBM Corporation
  6. #
  7. #      DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  8. #      sample code created by IBM Corporation. This sample code is not
  9. #      part of any standard or IBM product and is provided to you solely
  10. #      for  the purpose of assisting you in the development of your
  11. #      applications.  The code is provided "AS IS", without
  12. #      warranty of any kind.  IBM shall not be liable for any damages
  13. #      arising out of your use of the sample code, even if they have been
  14. #      advised of the possibility of such damages.
  15. #
  16. #===================================================================
  17.  
  18. #-------------------------------------------------------------------
  19. #   IBMSAMP.INC - sets up for IBM Compiler
  20. #-------------------------------------------------------------------
  21. include ..\..\ibmsamp.inc
  22.  
  23. HEADERS = hanoi.h
  24. #-------------------------------------------------------------------
  25. #
  26. #   A list of all of the object files
  27. #
  28. #-------------------------------------------------------------------
  29.  
  30. ALL_OBJS = hanoi.obj
  31. ALL_IPF = hanoi.ipf
  32.  
  33. #-------------------------------------------------------------------
  34. #   This section lists all files to be built by the make.  The
  35. #   makefile builds the executible as well as its associated help
  36. #   file.
  37. #-------------------------------------------------------------------
  38. all: hanoi.exe hanoi.hlp
  39.  
  40. #-------------------------------------------------------------------
  41. #   This section creates the command file used by the linker.  This
  42. #   command file is recreated automatically every time you change
  43. #   the object file list, linker flags, or library list.
  44. #-------------------------------------------------------------------
  45. hanoi.lnk: hanoi.mak
  46.     echo $(ALL_OBJS)               > hanoi.lnk
  47.     echo hanoi.exe                >> hanoi.lnk
  48.     echo hanoi.map                >> hanoi.lnk
  49.     echo $(MTLIBS)                >> hanoi.lnk
  50.     echo hanoi.def                >> hanoi.lnk
  51.  
  52. #-------------------------------------------------------------------
  53. #   Dependencies
  54. #     This section lists all object files needed to be built for the
  55. #     application, along with the files it is dependent upon (e.g.
  56. #     its source and any header files).
  57. #-------------------------------------------------------------------
  58. hanoi.res: hanoi.rc $(HEADERS) hanoi.ico hanoi.dlg
  59.          copy ..\..\prodinfo.bmp
  60.          rc -r hanoi.rc
  61.          del prodinfo.bmp
  62.  
  63. hanoi.hlp: $(ALL_IPF)
  64.  
  65. hanoi.obj: hanoi.c $(HEADERS)
  66.  
  67. hanoi.exe: $(ALL_OBJS) hanoi.def hanoi.res hanoi.lnk
  68.    $(LINK) @hanoi.lnk
  69.    rc -p -x hanoi.res hanoi.exe
  70.  
  71.