home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / samples / opengl / cube / makefile.vc < prev    next >
Makefile  |  2000-02-28  |  539b  |  27 lines

  1. #
  2. # File:        makefile.vc
  3. # Author:    Julian Smart
  4. # Created:    1999
  5. # Updated:    
  6. # Copyright:    (c) Julian Smart
  7. #
  8. # Makefile : Builds sample (VC++, WIN32)
  9. # Use FINAL=1 argument to nmake to build final version with no debug info.
  10.  
  11. # Set WXDIR for your system
  12. WXDIR = $(WXWIN)
  13.  
  14. !if "$(FINAL)" == "1"
  15. !else
  16. LIBEXT=_d
  17. !endif
  18.  
  19. PROGRAM=cube
  20. OBJECTS = $(PROGRAM).obj
  21. #EXTRAINC=-I..\..\win
  22. #EXTRALIBS=$(WXDIR)\lib\glcanvas$(LIBEXT).lib glu32.lib opengl32.lib
  23. EXTRALIBS=glu32.lib opengl32.lib
  24.  
  25. !include $(WXDIR)\src\makeprog.vc
  26.  
  27.