]> git.saurik.com Git - wxWidgets.git/blob - contrib/src/deprecated/makefile.vc
Deprecated library mods
[wxWidgets.git] / contrib / src / deprecated / makefile.vc
1
2 # File: makefile.vc
3 # Author: Julian Smart
4 # Created: 1993
5 # Updated:
6 # Copyright:
7 #
8 # "%W% %G%"
9 #
10 # Makefile : Builds Deprecated Features classes library (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 THISDIR = $(WXDIR)\contrib\src\deprecated
17
18 !if "$(RM)" == ""
19 RM= erase
20 !endif
21
22 NOPCH=1
23
24 # Unfortunately we need this _before_ we include makelib.vc
25 !if "$(FINAL)" == "1"
26 D=Release
27 !else
28 D=Debug
29 LIBEXT=d
30 !endif
31
32 LIBTARGET=$(WXDIR)\lib\wxdeprecated$(LIBEXT).lib
33 EXTRATARGETS=$(D)
34
35 OBJECTS=$(D)\prop.obj $(D)\propform.obj $(D)\proplist.obj $(D)\y_tab.obj $(D)\resource.obj $(D)\treelay.obj
36
37 !include $(WXDIR)\src\makelib.vc
38