home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv6.zip / vac22os2 / ibmcobol / samples / toolkit / mm / beehive / beehive.mak < prev    next >
Text File  |  1996-11-19  |  3KB  |  71 lines

  1. #===================================================================
  2. #
  3. #   BEEHIVE.MAK - BEEHIVE Make file
  4. #   Copyright  IBM Corporation 1992
  5. #
  6. #===================================================================
  7. #===================================================================
  8. # Include the file ibmsamp.inc which defines the various macros
  9. # depending on the target specified.
  10. #
  11. # The following macros are defined in ibmsamp.inc:
  12. #
  13. #       OBJDIR   - Directory where object files are created
  14. #       EXEDIR   - Directory where executable files are created
  15. #       RC       - Resource compiler
  16. #       RCFLAGS  - Resource compiler flags
  17. #       LINK     - Linker
  18. #       LFLAGS   - Linker flags
  19. #       MTLIBS   - Multithreaded versions of the runtime libraries
  20. #       MMLIBS   - Multimedia libraries
  21. #===================================================================
  22.  
  23. !include ..\..\ibmsamp.inc
  24.  
  25. HEADERS = beehive.h
  26. #-------------------------------------------------------------------
  27. #
  28. #   A list of all of the object files
  29. #
  30. #-------------------------------------------------------------------
  31.  
  32. OBJS = $(OBJDIR)\beehive.obj $(OBJDIR)\pcxload.obj $(OBJDIR)\animate.obj \
  33.        $(OBJDIR)\blitgen.obj
  34.  
  35. #-------------------------------------------------------------------
  36. #   This section lists all files to be built by the make.  The
  37. #   makefile builds the executible as well as its associated help
  38. #   file.
  39. #-------------------------------------------------------------------
  40. all: $(EXEDIR)\beehive.exe
  41.  
  42. #-------------------------------------------------------------------
  43. #   This section creates the command file used by the linker.  This
  44. #   command file is recreated automatically every time you change
  45. #   the object file list, linker flags, or library list.
  46. #-------------------------------------------------------------------
  47. #-------------------------------------------------------------------
  48. #   Dependencies
  49. #     This section lists all object files needed to be built for the
  50. #     application, along with the files it is dependent upon (e.g.
  51. #     its source and any header files).
  52. #-------------------------------------------------------------------
  53. $(OBJDIR)\beehive.res: beehive.rc $(HEADERS) beehive.ico prodinfo.bmp
  54.                 $(RC) $(RCFLAGS) $(@B).rc $@
  55.                 @del prodinfo.bmp
  56.  
  57. prodinfo.bmp :
  58.            copy ..\..\prodinfo.bmp $@
  59.  
  60. $(EXEDIR)\beehive.exe: $(OBJS) beehive.def $(OBJDIR)\beehive.res
  61.    -$(CREATE_PATH)
  62.    $(LINK) $@ beehive.def $(MTLIBS) $(MMLIBS) @<<$(OBJDIR)\beehive.lnk
  63. $(OBJS)
  64. <<
  65.    $(RC) -p -x $(OBJDIR)\$(@B).res $@
  66.  
  67. clean :
  68.         @if exist *.obj del *.obj
  69.         @if exist *.dll del *.dll
  70.         @if exist *.exe del *.exe
  71.