home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / BAGS.PAK / MAKEFILE < prev   
Text File  |  1995-08-29  |  1KB  |  29 lines

  1. #--------------------------------------------------------------------------#
  2. #                                                                          #
  3. #   MAKEFILE for BAG examples                                              #
  4. #                                                                          #
  5. #   Copyright (c) 1994 Borland International                               #
  6. #   All Rights Reserved                                                    #
  7. #                                                                          #
  8. #   Usage:                                                                 #
  9. #                                                                          #
  10. #       make -DCON32                    for 32-bit Windows Console         #
  11. #       make MODEL={s|m|c|l}            for 16-bit Windows using EasyWin   #
  12. #       make MODEL={s|m|c|l|h} -DDOS16  for 16-bit DOS                     #
  13. #                                                                          #
  14. #--------------------------------------------------------------------------#
  15.  
  16. EXE    = bag
  17. EXEALL = bag.exe ibag.exe
  18.  
  19. EXEMAKE= $(BAG) $(IBAG)
  20.  
  21. RULES  = myclass.obj: ..\myclass.cpp
  22.  
  23. BAG=$(EXERULE:bag.obj=bag.obj myclass.obj)
  24. IBAG=$(BAG:bag=ibag)
  25.  
  26.  
  27. !include $(BCEXAMPLEDIR)\bidsmake.gen
  28.  
  29.