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

  1. #--------------------------------------------------------------------------#
  2. #                                                                          #
  3. #   MAKEFILE for List 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    = listx
  17. EXEALL = listx.exe ilist.exe slist.exe islist.exe \
  18.          dlist.exe idlist.exe sdlist.exe isdlist.exe
  19.  
  20. EXEMAKE= $(LIST) $(ILIST) $(SLIST) $(ISLIST) \
  21.          $(DLIST) $(IDLIST) $(SDLIST) $(ISDLIST)
  22.  
  23. RULES  = myclass.obj: ..\myclass.cpp
  24.  
  25. LIST=$(EXERULE:listx.obj=listx.obj myclass.obj)
  26. ILIST=$(LIST:listx=ilist)
  27. SLIST=$(LIST:listx=slist)
  28. ISLIST=$(LIST:listx=islist)
  29. DLIST=$(LIST:listx=dlist)
  30. IDLIST=$(LIST:listx=idlist)
  31. SDLIST=$(LIST:listx=sdlist)
  32. ISDLIST=$(LIST:listx=isdlist)
  33.  
  34.  
  35. !include $(BCEXAMPLEDIR)\bidsmake.gen
  36.  
  37.