wxWidgets/contrib/samples/gizmos/splittree/makefile.vc

20 lines
371 B
Plaintext
Raw Normal View History

# Makefile : Builds sample (VC++, WIN32)
# Use FINAL=1 argument to nmake to build final version with no debug info.
# Created 2000-07-28
# Set WXDIR for your system
WXDIR = $(WXWIN)
FINAL=0
PROGRAM=tree
OBJECTS = $(PROGRAM).obj
!if "$(FINAL)" == "0"
EXTRALIBS=$(WXDIR)\lib\gizmosd.lib
!else
EXTRALIBS=$(WXDIR)\lib\gizmos.lib
!endif
!include $(WXDIR)\src\makeprog.vc