]> git.saurik.com Git - wxWidgets.git/blame - samples/makefile.nt
Daniel Gehriger <dgehrige@dmtsun.epfl.ch> patch for default extension filter
[wxWidgets.git] / samples / makefile.nt
CommitLineData
1ff121bd
JS
1#
2# File: makefile.nt
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++ 4.0
11# Use FINAL=1 argument to nmake to build final version with no debugging
12# info
13
14# Set WXDIR for your system
15WXDIR = $(WXWIN)
16
17THISDIR=$(WXDIR)\samples
18
19!include $(WXDIR)\src\ntwxwin.mak
20
21DEBUG_FLAGS="/Zi /FR"
22LINK_DEBUG_FLAGS="/RELEASE"
23
24all:
25 cd $(WXDIR)\samples\splitter
2fd284a4 26 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 27 cd $(WXDIR)\samples\resource
2fd284a4 28 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 29 cd $(WXDIR)\samples\controls
2fd284a4 30 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 31 cd $(WXDIR)\samples\listctrl
2fd284a4 32 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 33 cd $(WXDIR)\samples\treectrl
2fd284a4 34 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 35 cd $(WXDIR)\samples\validate
2fd284a4 36 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 37 cd $(WXDIR)\samples\mdi
2fd284a4 38 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 39 cd $(WXDIR)\samples\minimal
2fd284a4 40 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 41 cd $(WXDIR)\samples\layout
2fd284a4 42 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 43 cd $(WXDIR)\samples\printing
2fd284a4 44 nmake -f makefile.nt FINAL=$(FINAL)
14d1ccd8 45 cd $(WXDIR)\samples\toolbar
2fd284a4 46 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 47 cd $(WXDIR)\samples\dialogs
2fd284a4 48 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 49 cd $(WXDIR)\samples\docview
2fd284a4 50 nmake -f makefile.nt FINAL=$(FINAL)
27529614 51 cd $(WXDIR)\samples\docvwmdi
2fd284a4 52 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 53 cd $(WXDIR)\samples\controls
2fd284a4 54 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 55 cd $(WXDIR)\samples\nativdlg
2fd284a4 56 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 57 cd $(WXDIR)\samples\grid
2fd284a4 58 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 59 cd $(WXDIR)\samples\internat
2fd284a4 60 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 61 cd $(WXDIR)\samples\dnd
2fd284a4 62 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 63 cd $(WXDIR)\samples\joytest
2fd284a4 64 nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd 65 cd $(WXDIR)\samples\taskbar
2fd284a4 66 nmake -f makefile.nt FINAL=$(FINAL)
27529614 67 cd $(WXDIR)\samples\sashtest
2fd284a4
JS
68 nmake -f makefile.nt FINAL=$(FINAL)
69!if "$(FINAL)" == "0"
27529614 70 cd $(WXDIR)\samples\memcheck
2fd284a4
JS
71!endif
72 nmake -f makefile.nt FINAL=$(FINAL)
e8c81745 73 cd $(WXDIR)\samples\ownerdrw
2fd284a4 74 nmake -f makefile.nt FINAL=$(FINAL)
e8c81745 75 cd $(WXDIR)\samples\checklst
2fd284a4 76 nmake -f makefile.nt FINAL=$(FINAL)
c030b70f 77 cd $(WXDIR)\samples\minifram
2fd284a4 78 nmake -f makefile.nt FINAL=$(FINAL)
e3a43801 79 cd $(WXDIR)\samples\bombs
2fd284a4 80 nmake -f makefile.nt FINAL=$(FINAL)
e3a43801 81 cd $(WXDIR)\samples\fractal
2fd284a4 82 nmake -f makefile.nt FINAL=$(FINAL)
e3a43801 83 cd $(WXDIR)\samples\wxpoem
2fd284a4
JS
84 nmake -f makefile.nt FINAL=$(FINAL)
85 cd $(WXDIR)\samples\typetest
86 nmake -f makefile.nt FINAL=$(FINAL)
e3a43801 87 cd $(WXDIR)\samples\proplist
2fd284a4
JS
88 nmake -f makefile.nt FINAL=$(FINAL)
89 cd $(WXDIR)\samples\image
90 nmake -f makefile.nt FINAL=$(FINAL)
27529614 91# cd $(WXDIR)\samples\regtest
2fd284a4 92# nmake -f makefile.nt FINAL=$(FINAL)
1ff121bd
JS
93
94clean:
95 cd $(WXDIR)\samples\splitter
96 nmake -f makefile.nt clean
97 cd $(WXDIR)\samples\mdi
98 nmake -f makefile.nt clean
99 cd $(WXDIR)\samples\minimal
100 nmake -f makefile.nt clean
101 cd $(WXDIR)\samples\layout
102 nmake -f makefile.nt clean
103 cd $(WXDIR)\samples\printing
104 nmake -f makefile.nt clean
14d1ccd8 105 cd $(WXDIR)\samples\toolbar
1ff121bd
JS
106 nmake -f makefile.nt clean
107 cd $(WXDIR)\samples\dialogs
108 nmake -f makefile.nt clean
109 cd $(WXDIR)\samples\resource
110 nmake -f makefile.nt clean
111 cd $(WXDIR)\samples\listctrl
112 nmake -f makefile.nt clean
113 cd $(WXDIR)\samples\treectrl
114 nmake -f makefile.nt clean
115 cd $(WXDIR)\samples\validate
116 nmake -f makefile.nt clean
1ff121bd
JS
117 cd $(WXDIR)\samples\docview
118 nmake -f makefile.nt clean
27529614
JS
119 cd $(WXDIR)\samples\docvwmdi
120 nmake -f makefile.nt clean
1ff121bd
JS
121 cd $(WXDIR)\samples\controls
122 nmake -f makefile.nt clean
123 cd $(WXDIR)\samples\nativdlg
124 nmake -f makefile.nt clean
125 cd $(WXDIR)\samples\grid
126 nmake -f makefile.nt clean
127 cd $(WXDIR)\samples\internat
128 nmake -f makefile.nt clean
129 cd $(WXDIR)\samples\checklst
130 nmake -f makefile.nt clean
131 cd $(WXDIR)\samples\ownerdrw
132 nmake -f makefile.nt clean
133 cd $(WXDIR)\samples\dnd
134 nmake -f makefile.nt clean
135 cd $(WXDIR)\samples\joytest
136 nmake -f makefile.nt clean
137 cd $(WXDIR)\samples\regtest
138 nmake -f makefile.nt clean
139 cd $(WXDIR)\samples\taskbar
140 nmake -f makefile.nt clean
27529614
JS
141 cd $(WXDIR)\samples\sashtest
142 nmake -f makefile.nt clean
1ff121bd
JS
143 cd $(WXDIR)\samples\memcheck
144 nmake -f makefile.nt clean
c030b70f
JS
145 cd $(WXDIR)\samples\minifram
146 nmake -f makefile.nt clean
e3a43801
JS
147 cd $(WXDIR)\samples\bombs
148 nmake -f makefile.nt clean
149 cd $(WXDIR)\samples\fractal
150 nmake -f makefile.nt clean
151 cd $(WXDIR)\samples\wxpoem
152 nmake -f makefile.nt clean
2fd284a4 153 cd $(WXDIR)\samples\typetest
e3a43801
JS
154 nmake -f makefile.nt clean
155 cd $(WXDIR)\samples\proplist
156 nmake -f makefile.nt clean
2fd284a4
JS
157 cd $(WXDIR)\samples\image
158 nmake -f makefile.nt clean
1ff121bd 159