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

  1. #--------------------------------------------------------------------------#
  2. #                                                                          #
  3. #   MAKEFILE for QUEUE 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    = queue
  17. EXEALL = queue.exe iqueue.exe quelist.exe iquelist.exe
  18.  
  19. EXEMAKE= $(QUEUE) $(IQUEUE) $(QUELIST) $(IQUELIST)
  20.  
  21. RULES  = myclass.obj: ..\myclass.cpp
  22.  
  23. QUEUE=$(EXERULE:queue.obj=queue.obj myclass.obj)
  24. IQUEUE=$(QUEUE:queue=iqueue)
  25.  
  26. QUELIST=$(QUEUE:queue=quelist)
  27. IQUELIST=$(QUEUE:queue=iquelist)
  28.  
  29. !include $(BCEXAMPLEDIR)\bidsmake.gen
  30.  
  31.