]> git.saurik.com Git - wxWidgets.git/blob - samples/makefile.g95
wxToolTip
[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 SHELL=cmd.exe
15 WXDIR = ..
16
17 THISDIR=$(WXDIR)/samples
18
19 all:
20 $(MAKE) -C $(WXDIR)/samples/bombs -f makefile.g95
21 $(MAKE) -C $(WXDIR)/samples/fractal -f makefile.g95
22 $(MAKE) -C $(WXDIR)/samples/splitter -f makefile.g95
23 $(MAKE) -C $(WXDIR)/samples/resource -f makefile.g95
24 $(MAKE) -C $(WXDIR)/samples/controls -f makefile.g95
25 $(MAKE) -C $(WXDIR)/samples/listctrl -f makefile.g95
26 $(MAKE) -C $(WXDIR)/samples/treectrl -f makefile.g95
27 $(MAKE) -C $(WXDIR)/samples/validate -f makefile.g95
28 $(MAKE) -C $(WXDIR)/samples/mdi -f makefile.g95
29 $(MAKE) -C $(WXDIR)/samples/minimal -f makefile.g95
30 $(MAKE) -C $(WXDIR)/samples/layout -f makefile.g95
31 $(MAKE) -C $(WXDIR)/samples/printing -f makefile.g95
32 $(MAKE) -C $(WXDIR)/samples/proplist -f makefile.g95
33 $(MAKE) -C $(WXDIR)/samples/toolbar -f makefile.g95
34 $(MAKE) -C $(WXDIR)/samples/dialogs -f makefile.g95
35 $(MAKE) -C $(WXDIR)/samples/docview -f makefile.g95
36 $(MAKE) -C $(WXDIR)/samples/docvwmdi -f makefile.g95
37 $(MAKE) -C $(WXDIR)/samples/sashtest -f makefile.g95
38 $(MAKE) -C $(WXDIR)/samples/controls -f makefile.g95
39 $(MAKE) -C $(WXDIR)/samples/nativdlg -f makefile.g95
40 $(MAKE) -C $(WXDIR)/samples/grid -f makefile.g95
41 $(MAKE) -C $(WXDIR)/samples/internat -f makefile.g95
42 $(MAKE) -C $(WXDIR)/samples/checklst -f makefile.g95
43 $(MAKE) -C $(WXDIR)/samples/dnd -f makefile.g95
44 $(MAKE) -C $(WXDIR)/samples/ownerdrw -f makefile.g95
45 $(MAKE) -C $(WXDIR)/samples/joytest -f makefile.g95
46 $(MAKE) -C $(WXDIR)/samples/memcheck -f makefile.g95
47 # $(MAKE) -C $(WXDIR)/samples/regtest -f makefile.g95
48
49 clean:
50 $(MAKE) -C $(WXDIR)/samples/bombs -f makefile.g95 clean
51 $(MAKE) -C $(WXDIR)/samples/fractal -f makefile.g95 clean
52 $(MAKE) -C $(WXDIR)/samples/splitter -f makefile.g95 clean
53 $(MAKE) -C $(WXDIR)/samples/mdi -f makefile.g95 clean
54 $(MAKE) -C $(WXDIR)/samples/minimal -f makefile.g95 clean
55 $(MAKE) -C $(WXDIR)/samples/layout -f makefile.g95 clean
56 $(MAKE) -C $(WXDIR)/samples/printing -f makefile.g95 clean
57 $(MAKE) -C $(WXDIR)/samples/proplist -f makefile.g95 clean
58 $(MAKE) -C $(WXDIR)/samples/toolbar -f makefile.g95 clean
59 $(MAKE) -C $(WXDIR)/samples/dialogs -f makefile.g95 clean
60 $(MAKE) -C $(WXDIR)/samples/resource -f makefile.g95 clean
61 $(MAKE) -C $(WXDIR)/samples/listctrl -f makefile.g95 clean
62 $(MAKE) -C $(WXDIR)/samples/treectrl -f makefile.g95 clean
63 $(MAKE) -C $(WXDIR)/samples/validate -f makefile.g95 clean
64 $(MAKE) -C $(WXDIR)/samples/docview -f makefile.g95 clean
65 $(MAKE) -C $(WXDIR)/samples/docvwmdi -f makefile.g95 clean
66 $(MAKE) -C $(WXDIR)/samples/sashtest -f makefile.g95 clean
67 $(MAKE) -C $(WXDIR)/samples/controls -f makefile.g95 clean
68 $(MAKE) -C $(WXDIR)/samples/nativdlg -f makefile.g95 clean
69 $(MAKE) -C $(WXDIR)/samples/grid -f makefile.g95 clean
70 $(MAKE) -C $(WXDIR)/samples/internat -f makefile.g95 clean
71 $(MAKE) -C $(WXDIR)/samples/checklst -f makefile.g95 clean
72 $(MAKE) -C $(WXDIR)/samples/dnd -f makefile.g95 clean
73 $(MAKE) -C $(WXDIR)/samples/ownerdrw -f makefile.g95 clean
74 $(MAKE) -C $(WXDIR)/samples/regtest -f makefile.g95 clean
75 $(MAKE) -C $(WXDIR)/samples/joytest -f makefile.g95 clean
76 $(MAKE) -C $(WXDIR)/samples/memcheck -f makefile.g95 clean
77
78