VC makefile for building samples/console using wxBase(d).lib
[wxWidgets.git] / samples / console / makefile.vc
1 # Purpose: makefile for console sample (VC++ 32bit)
2 # Created: 2000-01-03
3
4 # Set WXDIR for your system
5 WXDIR = $(WXWIN)
6 wxUSE_GUI = 0
7
8 PROGRAM=console 
9 OBJECTS = $(PROGRAM).obj
10
11 !if "$(FINAL)" == "1"
12 EXTRALIBS=$(WXDIR)\lib\zlib.lib
13 !else
14 EXTRALIBS=$(WXDIR)\lib\zlibd.lib
15 !endif
16
17 !include $(WXDIR)\src\makeprog.vc
18