]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - tools/src/tools/configtool/standalone/wxwin/makefile.vc
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / tools / src / tools / configtool / standalone / wxwin / makefile.vc
1 # Makefile : Builds ConfigTool (VC++, WIN32)
2 # Use FINAL=1 argument to nmake to build final version with no debug info.
3 # Created 2000-07-28
4
5 # Set WXDIR for your system
6 WXDIR = $(WXWIN)
7 FINAL=0
8 PROGRAM=configtool
9 OBJECTS = $(PROGRAM).obj appsettings.obj configitem.obj configtree.obj mainwin.obj
10
11 !if "$(FINAL)" == "0"
12 EXTRALIBS=$(WXDIR)\lib\gizmosd.lib
13 !else
14 EXTRALIBS=$(WXDIR)\lib\gizmos.lib
15 !endif
16
17 !include $(WXDIR)\src\makeprog.vc
18
19