home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2233.zip / wxOS2-2_3_3.zip / wxWindows-2.3.3 / contrib / utils / wxrcedit / makefile.vc < prev    next >
Makefile  |  2001-06-09  |  722b  |  37 lines

  1. #
  2. # File:        makefile.vc
  3. # Author:    Julian Smart
  4. # Created:    2000
  5. # Updated:
  6. # Copyright:    (c) Julian Smart
  7. #
  8. # "%W% %G%"
  9. #
  10. # Makefile : Builds wxrcedit
  11. # Use FINAL=1 argument to nmake to build final version with no debugging
  12. # info
  13. # Set WXDIR for your system
  14. WXDIR = $(WXWIN)
  15.  
  16. PROGRAM=wxrcedit
  17.  
  18. FINAL=0
  19.  
  20. !if "$(FINAL)" == "0"
  21. EXTRALIBS=$(WXDIR)\lib\wxxrcd.lib
  22. !endif
  23.  
  24. !if "$(FINAL)" == "1"
  25. EXTRALIBS=$(WXDIR)\lib\wxxrc.lib
  26. !endif
  27.  
  28. !if "$(FINAL)" == "hybrid"
  29. EXTRALIBS=$(WXDIR)\lib\wxxrch.lib
  30. !endif
  31.  
  32. OBJECTS=edapp.obj editor.obj nodehnd.obj xmlhelpr.obj preview.obj nodesdb.obj \
  33.         pe_basic.obj pe_adv.obj propedit.obj propframe.obj splittree.obj
  34.  
  35. !include $(WXDIR)\src\makeprog.vc
  36.  
  37.