]> git.saurik.com Git - wxWidgets.git/blob - samples/makefile.g95
Changed BidEndianOrdered to BigEndianOrdered in datstrm.h
[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, Cygwin
11 # info
12
13 # Set WXDIR for your system
14 # SHELL=cmd.exe
15 WXDIR = ..
16
17 THISDIR=$(WXDIR)/samples
18
19 all:
20 cd $(WXDIR)/samples/bombs; make -f makefile.g95
21 cd $(WXDIR)/samples/fractal; make -f makefile.g95
22 cd $(WXDIR)/samples/splitter; make -f makefile.g95
23 cd $(WXDIR)/samples/resource; make -f makefile.g95
24 cd $(WXDIR)/samples/controls; make -f makefile.g95
25 cd $(WXDIR)/samples/listctrl; make -f makefile.g95
26 cd $(WXDIR)/samples/treectrl; make -f makefile.g95
27 cd $(WXDIR)/samples/validate; make -f makefile.g95
28 cd $(WXDIR)/samples/mdi; make -f makefile.g95
29 cd $(WXDIR)/samples/minimal; make -f makefile.g95
30 cd $(WXDIR)/samples/layout; make -f makefile.g95
31 cd $(WXDIR)/samples/printing; make -f makefile.g95
32 cd $(WXDIR)/samples/proplist; make -f makefile.g95
33 cd $(WXDIR)/samples/toolbar; make -f makefile.g95
34 cd $(WXDIR)/samples/dialogs; make -f makefile.g95
35 cd $(WXDIR)/samples/docview; make -f makefile.g95
36 cd $(WXDIR)/samples/docvwmdi; make -f makefile.g95
37 cd $(WXDIR)/samples/sashtest; make -f makefile.g95
38 cd $(WXDIR)/samples/controls; make -f makefile.g95
39 cd $(WXDIR)/samples/nativdlg; make -f makefile.g95
40 cd $(WXDIR)/samples/grid; make -f makefile.g95
41 cd $(WXDIR)/samples/internat; make -f makefile.g95
42 cd $(WXDIR)/samples/checklst; make -f makefile.g95
43 cd $(WXDIR)/samples/ownerdrw; make -f makefile.g95
44 cd $(WXDIR)/samples/joytest; make -f makefile.g95
45 cd $(WXDIR)/samples/memcheck; make -f makefile.g95
46 cd $(WXDIR)/samples/image; make -f makefile.g95
47 cd $(WXDIR)/samples/wxpoem; make -f makefile.g95
48 cd $(WXDIR)/samples/notebook; make -f makefile.g95
49 cd $(WXDIR)/samples/thread; make -f makefile.g95
50 cd $(WXDIR)/samples/minifram; make -f makefile.g95
51 cd $(WXDIR)/samples/forty; make -f makefile.g95
52 cd $(WXDIR)/samples/dde; make -f client.g95
53 cd $(WXDIR)/samples/dde; make -f server.g95
54 # cd $(WXDIR)/samples/dnd; make -f makefile.g95
55 # cd $(WXDIR)/samples/regtest; make -f makefile.g95
56
57 clean:
58 cd $(WXDIR)/samples/bombs; make -f makefile.g95 clean
59 cd $(WXDIR)/samples/fractal; make -f makefile.g95 clean
60 cd $(WXDIR)/samples/splitter; make -f makefile.g95 clean
61 cd $(WXDIR)/samples/mdi; make -f makefile.g95 clean
62 cd $(WXDIR)/samples/minimal; make -f makefile.g95 clean
63 cd $(WXDIR)/samples/layout; make -f makefile.g95 clean
64 cd $(WXDIR)/samples/printing; make -f makefile.g95 clean
65 cd $(WXDIR)/samples/proplist; make -f makefile.g95 clean
66 cd $(WXDIR)/samples/toolbar; make -f makefile.g95 clean
67 cd $(WXDIR)/samples/dialogs; make -f makefile.g95 clean
68 cd $(WXDIR)/samples/resource; make -f makefile.g95 clean
69 cd $(WXDIR)/samples/listctrl; make -f makefile.g95 clean
70 cd $(WXDIR)/samples/treectrl; make -f makefile.g95 clean
71 cd $(WXDIR)/samples/validate; make -f makefile.g95 clean
72 cd $(WXDIR)/samples/docview; make -f makefile.g95 clean
73 cd $(WXDIR)/samples/docvwmdi; make -f makefile.g95 clean
74 cd $(WXDIR)/samples/sashtest; make -f makefile.g95 clean
75 cd $(WXDIR)/samples/controls; make -f makefile.g95 clean
76 cd $(WXDIR)/samples/nativdlg; make -f makefile.g95 clean
77 cd $(WXDIR)/samples/grid; make -f makefile.g95 clean
78 cd $(WXDIR)/samples/internat; make -f makefile.g95 clean
79 cd $(WXDIR)/samples/checklst; make -f makefile.g95 clean
80 cd $(WXDIR)/samples/ownerdrw; make -f makefile.g95 clean
81 cd $(WXDIR)/samples/regtest; make -f makefile.g95 clean
82 cd $(WXDIR)/samples/joytest; make -f makefile.g95 clean
83 cd $(WXDIR)/samples/memcheck; make -f makefile.g95 clean
84 cd $(WXDIR)/samples/image; make -f makefile.g95 clean
85 cd $(WXDIR)/samples/wxpoem; make -f makefile.g95 clean
86 cd $(WXDIR)/samples/notebook; make -f makefile.g95 clean
87 cd $(WXDIR)/samples/thread; make -f makefile.g95 clean
88 cd $(WXDIR)/samples/minifram; make -f makefile.g95 clean
89 cd $(WXDIR)/samples/forty; make -f makefile.g95 clean
90 cd $(WXDIR)/samples/dnd; make -f makefile.g95 clean
91 cd $(WXDIR)/samples/dde; make -f client.g95 clean
92 cd $(WXDIR)/samples/dde; make -f server.g95 clean
93
94