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 / samples / ogl / ogledit / makefile.vc < prev    next >
Makefile  |  2001-05-07  |  559b  |  30 lines

  1. #
  2. # File:        makefile.vc
  3. # Author:    Julian Smart
  4. # Created:    1993
  5. # Updated:
  6. # Copyright:    (c) 1993, AIAI, University of Edinburgh
  7. #
  8. # "%W% %G%"
  9. #
  10. # Makefile : Builds ogledit example (MS VC++).
  11. # Use FINAL=1 argument to nmake to build final version with no debugging
  12. # info
  13.  
  14. # Set WXDIR for your system
  15. WXDIR = $(WXWIN)
  16.  
  17. PROGRAM=ogledit
  18. FINAL=0
  19.  
  20. !if "$(FINAL)" == "0"
  21. EXTRALIBS=$(WXDIR)\lib\ogld.lib
  22. !else
  23. EXTRALIBS=$(WXDIR)\lib\ogl.lib
  24. !endif
  25.  
  26. OBJECTS = $(PROGRAM).obj doc.obj view.obj palette.obj
  27.  
  28. !include $(WXDIR)\src\makeprog.vc
  29.  
  30.