]> git.saurik.com Git - wxWidgets.git/blob - samples/makefile.dos
More asserts (well, checks) without _T()
[wxWidgets.git] / samples / makefile.dos
1 #
2 # File: makefile.dos
3 # Author: Julian Smart
4 # Created: 1993
5 # Updated:
6 # Copyright: (c) 1993, AIAI, University of Edinburgh
7 #
8 # "%W% %G%"
9 #
10 # Makefile : Builds samples for Win95, MSVC++ 16-bit
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
17 THISDIR=$(WXDIR)\samples
18
19 !include $(WXDIR)\src\makemsc.env
20
21 all:
22 cd $(WXDIR)\samples\splitter
23 nmake -f makefile.dos FINAL=$(FINAL)
24 cd $(WXDIR)\samples\resource
25 nmake -f makefile.dos FINAL=$(FINAL)
26 cd $(WXDIR)\samples\controls
27 nmake -f makefile.dos FINAL=$(FINAL)
28 cd $(WXDIR)\samples\listctrl
29 nmake -f makefile.dos FINAL=$(FINAL)
30 cd $(WXDIR)\samples\treectrl
31 nmake -f makefile.dos FINAL=$(FINAL)
32 cd $(WXDIR)\samples\validate
33 nmake -f makefile.dos FINAL=$(FINAL)
34 cd $(WXDIR)\samples\mdi
35 nmake -f makefile.dos FINAL=$(FINAL)
36 cd $(WXDIR)\samples\minimal
37 nmake -f makefile.dos FINAL=$(FINAL)
38 cd $(WXDIR)\samples\layout
39 nmake -f makefile.dos FINAL=$(FINAL)
40 cd $(WXDIR)\samples\printing
41 nmake -f makefile.dos FINAL=$(FINAL)
42 cd $(WXDIR)\samples\toolbar
43 nmake -f makefile.dos FINAL=$(FINAL)
44 cd $(WXDIR)\samples\dialogs
45 nmake -f makefile.dos FINAL=$(FINAL)
46 cd $(WXDIR)\samples\docview
47 nmake -f makefile.dos FINAL=$(FINAL)
48 cd $(WXDIR)\samples\docvwmdi
49 nmake -f makefile.dos FINAL=$(FINAL)
50 cd $(WXDIR)\samples\controls
51 nmake -f makefile.dos FINAL=$(FINAL)
52 cd $(WXDIR)\samples\nativdlg
53 nmake -f makefile.dos FINAL=$(FINAL)
54 cd $(WXDIR)\samples\grid
55 nmake -f makefile.dos FINAL=$(FINAL)
56 cd $(WXDIR)\samples\internat
57 nmake -f makefile.dos FINAL=$(FINAL)
58 cd $(WXDIR)\samples\dnd
59 nmake -f makefile.dos FINAL=$(FINAL)
60 cd $(WXDIR)\samples\joytest
61 nmake -f makefile.dos FINAL=$(FINAL)
62 cd $(WXDIR)\samples\taskbar
63 nmake -f makefile.dos FINAL=$(FINAL)
64 cd $(WXDIR)\samples\sashtest
65 nmake -f makefile.dos FINAL=$(FINAL)
66 !if "$(FINAL)" == "0"
67 cd $(WXDIR)\samples\memcheck
68 !endif
69 nmake -f makefile.dos FINAL=$(FINAL)
70 cd $(WXDIR)\samples\ownerdrw
71 nmake -f makefile.dos FINAL=$(FINAL)
72 cd $(WXDIR)\samples\checklst
73 nmake -f makefile.dos FINAL=$(FINAL)
74 cd $(WXDIR)\samples\minifram
75 nmake -f makefile.dos FINAL=$(FINAL)
76 cd $(WXDIR)\samples\bombs
77 nmake -f makefile.dos FINAL=$(FINAL)
78 cd $(WXDIR)\samples\fractal
79 nmake -f makefile.dos FINAL=$(FINAL)
80 cd $(WXDIR)\samples\wxpoem
81 nmake -f makefile.dos FINAL=$(FINAL)
82 cd $(WXDIR)\samples\typetest
83 nmake -f makefile.dos FINAL=$(FINAL)
84 cd $(WXDIR)\samples\proplist
85 nmake -f makefile.dos FINAL=$(FINAL)
86 cd $(WXDIR)\samples\image
87 nmake -f makefile.dos FINAL=$(FINAL)
88 cd $(WXDIR)\samples\dde
89 nmake -f makefile.dos FINAL=$(FINAL)
90 # cd $(WXDIR)\samples\regtest
91 # nmake -f makefile.dos FINAL=$(FINAL)
92
93 clean:
94 cd $(WXDIR)\samples\splitter
95 nmake -f makefile.dos clean
96 cd $(WXDIR)\samples\mdi
97 nmake -f makefile.dos clean
98 cd $(WXDIR)\samples\minimal
99 nmake -f makefile.dos clean
100 cd $(WXDIR)\samples\layout
101 nmake -f makefile.dos clean
102 cd $(WXDIR)\samples\printing
103 nmake -f makefile.dos clean
104 cd $(WXDIR)\samples\toolbar
105 nmake -f makefile.dos clean
106 cd $(WXDIR)\samples\dialogs
107 nmake -f makefile.dos clean
108 cd $(WXDIR)\samples\resource
109 nmake -f makefile.dos clean
110 cd $(WXDIR)\samples\listctrl
111 nmake -f makefile.dos clean
112 cd $(WXDIR)\samples\treectrl
113 nmake -f makefile.dos clean
114 cd $(WXDIR)\samples\validate
115 nmake -f makefile.dos clean
116 cd $(WXDIR)\samples\docview
117 nmake -f makefile.dos clean
118 cd $(WXDIR)\samples\docvwmdi
119 nmake -f makefile.dos clean
120 cd $(WXDIR)\samples\controls
121 nmake -f makefile.dos clean
122 cd $(WXDIR)\samples\nativdlg
123 nmake -f makefile.dos clean
124 cd $(WXDIR)\samples\grid
125 nmake -f makefile.dos clean
126 cd $(WXDIR)\samples\internat
127 nmake -f makefile.dos clean
128 cd $(WXDIR)\samples\checklst
129 nmake -f makefile.dos clean
130 cd $(WXDIR)\samples\ownerdrw
131 nmake -f makefile.dos clean
132 cd $(WXDIR)\samples\dnd
133 nmake -f makefile.dos clean
134 cd $(WXDIR)\samples\joytest
135 nmake -f makefile.dos clean
136 cd $(WXDIR)\samples\regtest
137 nmake -f makefile.dos clean
138 cd $(WXDIR)\samples\taskbar
139 nmake -f makefile.dos clean
140 cd $(WXDIR)\samples\sashtest
141 nmake -f makefile.dos clean
142 cd $(WXDIR)\samples\memcheck
143 nmake -f makefile.dos clean
144 cd $(WXDIR)\samples\minifram
145 nmake -f makefile.dos clean
146 cd $(WXDIR)\samples\bombs
147 nmake -f makefile.dos clean
148 cd $(WXDIR)\samples\fractal
149 nmake -f makefile.dos clean
150 cd $(WXDIR)\samples\wxpoem
151 nmake -f makefile.dos clean
152 cd $(WXDIR)\samples\typetest
153 nmake -f makefile.dos clean
154 cd $(WXDIR)\samples\proplist
155 nmake -f makefile.dos clean
156 cd $(WXDIR)\samples\image
157 nmake -f makefile.dos clean
158 cd $(WXDIR)\samples\dde
159 nmake -f makefile.dos clean
160