]>
Commit | Line | Data |
---|---|---|
1ff121bd JS |
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 | |
1ff121bd JS |
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 | |
14d1ccd8 | 29 | cd $(WXDIR)/samples/toolbar; make -f makefile.g95 |
1ff121bd JS |
30 | cd $(WXDIR)/samples/dialogs; make -f makefile.g95 |
31 | cd $(WXDIR)/samples/docview; make -f makefile.g95 | |
27529614 JS |
32 | cd $(WXDIR)/samples/docvwmdi; make -f makefile.g95 |
33 | cd $(WXDIR)/samples/sashtest; make -f makefile.g95 | |
1ff121bd JS |
34 | cd $(WXDIR)/samples/controls; make -f makefile.g95 |
35 | cd $(WXDIR)/samples/nativdlg; make -f makefile.g95 | |
36 | cd $(WXDIR)/samples/grid; make -f makefile.g95 | |
37 | cd $(WXDIR)/samples/internat; make -f makefile.g95 | |
38 | cd $(WXDIR)/samples/checklst; make -f makefile.g95 | |
39 | cd $(WXDIR)/samples/dnd; make -f makefile.g95 | |
40 | cd $(WXDIR)/samples/ownerdrw; make -f makefile.g95 | |
41 | cd $(WXDIR)/samples/joytest; make -f makefile.g95 | |
1ff121bd | 42 | cd $(WXDIR)/samples/memcheck; make -f makefile.g95 |
27529614 | 43 | # cd $(WXDIR)/samples/regtest; make -f makefile.g95 |
1ff121bd JS |
44 | |
45 | clean: | |
46 | cd $(WXDIR)/samples/splitter; make -f makefile.g95 clean | |
47 | cd $(WXDIR)/samples/mdi; make -f makefile.g95 clean | |
48 | cd $(WXDIR)/samples/minimal; make -f makefile.g95 clean | |
49 | cd $(WXDIR)/samples/layout; make -f makefile.g95 clean | |
50 | cd $(WXDIR)/samples/printing; make -f makefile.g95 clean | |
14d1ccd8 | 51 | cd $(WXDIR)/samples/toolbar; make -f makefile.g95 clean |
1ff121bd JS |
52 | cd $(WXDIR)/samples/dialogs; make -f makefile.g95 clean |
53 | cd $(WXDIR)/samples/resource; make -f makefile.g95 clean | |
54 | cd $(WXDIR)/samples/listctrl; make -f makefile.g95 clean | |
55 | cd $(WXDIR)/samples/treectrl; make -f makefile.g95 clean | |
56 | cd $(WXDIR)/samples/validate; make -f makefile.g95 clean | |
1ff121bd | 57 | cd $(WXDIR)/samples/docview; make -f makefile.g95 clean |
27529614 JS |
58 | cd $(WXDIR)/samples/docvwmdi; make -f makefile.g95 clean |
59 | cd $(WXDIR)/samples/sashtest; make -f makefile.g95 clean | |
1ff121bd JS |
60 | cd $(WXDIR)/samples/controls; make -f makefile.g95 clean |
61 | cd $(WXDIR)/samples/nativdlg; make -f makefile.g95 clean | |
62 | cd $(WXDIR)/samples/grid; make -f makefile.g95 clean | |
63 | cd $(WXDIR)/samples/internat; make -f makefile.g95 clean | |
64 | cd $(WXDIR)/samples/checklst; make -f makefile.g95 clean | |
65 | cd $(WXDIR)/samples/dnd; make -f makefile.g95 clean | |
66 | cd $(WXDIR)/samples/ownerdrw; make -f makefile.g95 clean | |
67 | cd $(WXDIR)/samples/regtest; make -f makefile.g95 clean | |
68 | cd $(WXDIR)/samples/joytest; make -f makefile.g95 clean | |
69 | cd $(WXDIR)/samples/memcheck; make -f makefile.g95 clean | |
70 |