home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / deques.pak / MAKEFILE < prev   
Text File  |  1997-07-23  |  1KB  |  31 lines

  1. #--------------------------------------------------------------------------#
  2. #                                                                          #
  3. #   MAKEFILE for Deque 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    = deque
  17. EXEALL = deque.exe ideque.exe deqlist.exe ideqlist.exe
  18.  
  19. EXEMAKE= $(DEQUE) $(IDEQUE) $(DEQLIST) $(IDEQLIST)
  20.  
  21. RULES  = myclass.obj: ..\myclass.cpp
  22.  
  23. DEQUE=$(EXERULE:deque.obj=deque.obj myclass.obj)
  24. IDEQUE=$(DEQUE:deque=ideque)
  25. DEQLIST=$(DEQUE:deque=deqlist)
  26. IDEQLIST=$(DEQUE:deque=ideqlist)
  27.  
  28.  
  29. !include $(BCEXAMPLEDIR)\bidsmake.gen
  30.  
  31.