]> git.saurik.com Git - wxWidgets.git/blob - samples/makefile.g95
Created new, simplified toolbar sample; removed other toolbar samples.
[wxWidgets.git] / samples / makefile.g95
1 #
2 # File: makefile.g95
3 # Author: Julian Smart
4 # Created: 1997
5 # Updated:
6 # Copyright:
7 #
8 # "%W% %G%"
9 #
10 # Makefile : Builds samples for Win95, GnuWin32
11 # info
12
13 # Set WXDIR for your system
14 WXDIR = ..
15
16 THISDIR=$(WXDIR)/samples
17
18 all:
19 cd $(WXDIR)/samples/splitter; make -f makefile.g95
20 cd $(WXDIR)/samples/resource; make -f makefile.g95
21 cd $(WXDIR)/samples/controls; make -f makefile.g95
22 cd $(WXDIR)/samples/listctrl; make -f makefile.g95
23 cd $(WXDIR)/samples/treectrl; make -f makefile.g95
24 cd $(WXDIR)/samples/validate; make -f makefile.g95
25 cd $(WXDIR)/samples/mdi; make -f makefile.g95
26 cd $(WXDIR)/samples/minimal; make -f makefile.g95
27 cd $(WXDIR)/samples/layout; make -f makefile.g95
28 cd $(WXDIR)/samples/printing; make -f makefile.g95
29 cd $(WXDIR)/samples/toolbar; make -f makefile.g95
30 cd $(WXDIR)/samples/dialogs; make -f makefile.g95
31 cd $(WXDIR)/samples/docview; make -f makefile.g95
32 cd $(WXDIR)/samples/controls; make -f makefile.g95
33 cd $(WXDIR)/samples/nativdlg; make -f makefile.g95
34 cd $(WXDIR)/samples/grid; make -f makefile.g95
35 cd $(WXDIR)/samples/internat; make -f makefile.g95
36 cd $(WXDIR)/samples/checklst; make -f makefile.g95
37 cd $(WXDIR)/samples/dnd; make -f makefile.g95
38 cd $(WXDIR)/samples/ownerdrw; make -f makefile.g95
39 cd $(WXDIR)/samples/joytest; make -f makefile.g95
40 cd $(WXDIR)/samples/regtest; make -f makefile.g95
41 cd $(WXDIR)/samples/memcheck; make -f makefile.g95
42
43 clean:
44 cd $(WXDIR)/samples/splitter; make -f makefile.g95 clean
45 cd $(WXDIR)/samples/mdi; make -f makefile.g95 clean
46 cd $(WXDIR)/samples/minimal; make -f makefile.g95 clean
47 cd $(WXDIR)/samples/layout; make -f makefile.g95 clean
48 cd $(WXDIR)/samples/printing; make -f makefile.g95 clean
49 cd $(WXDIR)/samples/toolbar; make -f makefile.g95 clean
50 cd $(WXDIR)/samples/dialogs; make -f makefile.g95 clean
51 cd $(WXDIR)/samples/resource; make -f makefile.g95 clean
52 cd $(WXDIR)/samples/listctrl; make -f makefile.g95 clean
53 cd $(WXDIR)/samples/treectrl; make -f makefile.g95 clean
54 cd $(WXDIR)/samples/validate; make -f makefile.g95 clean
55 cd $(WXDIR)/samples/docview; make -f makefile.g95 clean
56 cd $(WXDIR)/samples/controls; make -f makefile.g95 clean
57 cd $(WXDIR)/samples/nativdlg; make -f makefile.g95 clean
58 cd $(WXDIR)/samples/grid; make -f makefile.g95 clean
59 cd $(WXDIR)/samples/internat; make -f makefile.g95 clean
60 cd $(WXDIR)/samples/checklst; make -f makefile.g95 clean
61 cd $(WXDIR)/samples/dnd; make -f makefile.g95 clean
62 cd $(WXDIR)/samples/ownerdrw; make -f makefile.g95 clean
63 cd $(WXDIR)/samples/regtest; make -f makefile.g95 clean
64 cd $(WXDIR)/samples/joytest; make -f makefile.g95 clean
65 cd $(WXDIR)/samples/memcheck; make -f makefile.g95 clean
66