]> git.saurik.com Git - wxWidgets.git/blob - utils/framelayout/samples/Makefile.vc
another attempt to fix wxPanel/wxFrame::m_winLastFocused handling
[wxWidgets.git] / utils / framelayout / samples / Makefile.vc
1 #
2 # File: makefile.vc
3 # Author: J. Russell Smyth
4 # Created: 1999
5 # Updated:
6 # Copyright:
7 #
8 # "%W% %G%"
9 #
10 # Makefile : Builds framelayout 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
15 WXDIR = $(WXWIN)
16
17 THISDIR=$(WXDIR)\utils\framelayout\samples
18
19 !include $(WXDIR)\src\makevc.env
20
21 all:
22 cd $(WXDIR)\utils\framelayout\samples\test
23 nmake -f makefile.vc FINAL=$(FINAL)
24 cd $(WXDIR)\utils\framelayout\samples\demo
25 nmake -f makefile.vc FINAL=$(FINAL)
26 cd $(WXDIR)\utils\framelayout\samples\sample
27 nmake -f makefile.vc FINAL=$(FINAL)
28
29 clean:
30 cd $(WXDIR)\utils\framelayout\samples\test
31 nmake -f makefile.vc clean
32 cd $(WXDIR)\utils\framelayout\samples\demo
33 nmake -f makefile.vc clean
34 cd $(WXDIR)\utils\framelayout\samples\sample
35 nmake -f makefile.vc clean