]>
Commit | Line | Data |
---|---|---|
94b49b93 JS |
1 | # |
2 | # Makefile : Builds wxWindows utils for Unix. | |
3 | ||
4 | # Replace this with your own path if necessary | |
5 | WXDIR = .. | |
6 | ||
7 | # All common UNIX compiler flags and options are now in | |
8 | # this central makefile. | |
9 | include $(WXDIR)/src/make.env | |
10 | ||
11 | TARGET=motif | |
12 | ||
13 | # Change these if needed. | |
14 | ||
15 | THISDIR = $(WXDIR)/samples | |
16 | ||
17 | all: | |
e3a43801 | 18 | cd bombs; $(MAKE) -f makefile.unx $(TARGET) |
94b49b93 JS |
19 | cd config; $(MAKE) -f makefile.unx $(TARGET) |
20 | cd controls; $(MAKE) -f makefile.unx $(TARGET) | |
21 | cd dialogs; $(MAKE) -f makefile.unx $(TARGET) | |
22 | cd dnd; $(MAKE) -f makefile.unx $(TARGET) | |
23 | cd docview; $(MAKE) -f makefile.unx $(TARGET) | |
24 | cd docvwmdi; $(MAKE) -f makefile.unx $(TARGET) | |
25 | cd dynamic; $(MAKE) -f makefile.unx $(TARGET) | |
e3a43801 | 26 | cd fractal; $(MAKE) -f makefile.unx $(TARGET) |
94b49b93 JS |
27 | cd grid; $(MAKE) -f makefile.unx $(TARGET) |
28 | cd help; $(MAKE) -f makefile.unx $(TARGET) | |
29 | cd image; $(MAKE) -f makefile.unx $(TARGET) | |
30 | cd internat; $(MAKE) -f makefile.unx $(TARGET) | |
31 | cd layout; $(MAKE) -f makefile.unx $(TARGET) | |
32 | cd memcheck; $(MAKE) -f makefile.unx $(TARGET) | |
33 | cd minifram; $(MAKE) -f makefile.unx $(TARGET) | |
34 | cd minimal; $(MAKE) -f makefile.unx $(TARGET) | |
35 | cd nativdlg; $(MAKE) -f makefile.unx $(TARGET) | |
36 | cd notebook; $(MAKE) -f makefile.unx $(TARGET) | |
37 | cd printing; $(MAKE) -f makefile.unx $(TARGET) | |
e3a43801 | 38 | cd proplist; $(MAKE) -f makefile.unx $(TARGET) |
94b49b93 JS |
39 | cd resource; $(MAKE) -f makefile.unx $(TARGET) |
40 | cd sashtest; $(MAKE) -f makefile.unx $(TARGET) | |
41 | cd splitter; $(MAKE) -f makefile.unx $(TARGET) | |
42 | cd tab; $(MAKE) -f makefile.unx $(TARGET) | |
43 | cd thread; $(MAKE) -f makefile.unx $(TARGET) | |
44 | cd toolbar; $(MAKE) -f makefile.unx $(TARGET) | |
45 | cd typetest; $(MAKE) -f makefile.unx $(TARGET) | |
46 | cd validate; $(MAKE) -f makefile.unx $(TARGET) | |
47 | cd treectrl; $(MAKE) -f makefile.unx $(TARGET) | |
48 | cd wxpoem; $(MAKE) -f makefile.unx $(TARGET) | |
49 | ||
50 | clean: | |
e3a43801 | 51 | cd bombs; $(MAKE) -f makefile.unx clean$(TARGET) |
94b49b93 JS |
52 | cd config; $(MAKE) -f makefile.unx clean$(TARGET) |
53 | cd controls; $(MAKE) -f makefile.unx clean$(TARGET) | |
54 | cd dialogs; $(MAKE) -f makefile.unx clean$(TARGET) | |
55 | cd dnd; $(MAKE) -f makefile.unx clean$(TARGET) | |
56 | cd docview; $(MAKE) -f makefile.unx clean$(TARGET) | |
57 | cd docvwmdi; $(MAKE) -f makefile.unx clean$(TARGET) | |
58 | cd dynamic; $(MAKE) -f makefile.unx clean$(TARGET) | |
e3a43801 | 59 | cd fractal; $(MAKE) -f makefile.unx clean$(TARGET) |
94b49b93 JS |
60 | cd grid; $(MAKE) -f makefile.unx clean$(TARGET) |
61 | cd help; $(MAKE) -f makefile.unx clean$(TARGET) | |
62 | cd image; $(MAKE) -f makefile.unx clean$(TARGET) | |
63 | cd internat; $(MAKE) -f makefile.unx clean$(TARGET) | |
64 | cd layout; $(MAKE) -f makefile.unx clean$(TARGET) | |
65 | cd memcheck; $(MAKE) -f makefile.unx clean$(TARGET) | |
66 | cd minifram; $(MAKE) -f makefile.unx clean$(TARGET) | |
67 | cd minimal; $(MAKE) -f makefile.unx clean$(TARGET) | |
68 | cd nativdlg; $(MAKE) -f makefile.unx clean$(TARGET) | |
69 | cd notebook; $(MAKE) -f makefile.unx clean$(TARGET) | |
70 | cd printing; $(MAKE) -f makefile.unx clean$(TARGET) | |
e3a43801 | 71 | cd proplist; $(MAKE) -f makefile.unx clean$(TARGET) |
94b49b93 JS |
72 | cd resource; $(MAKE) -f makefile.unx clean$(TARGET) |
73 | cd sashtest; $(MAKE) -f makefile.unx clean$(TARGET) | |
74 | cd splitter; $(MAKE) -f makefile.unx clean$(TARGET) | |
75 | cd tab; $(MAKE) -f makefile.unx clean$(TARGET) | |
76 | cd thread; $(MAKE) -f makefile.unx clean$(TARGET) | |
77 | cd toolbar; $(MAKE) -f makefile.unx clean$(TARGET) | |
78 | cd typetest; $(MAKE) -f makefile.unx clean$(TARGET) | |
79 | cd validate; $(MAKE) -f makefile.unx clean$(TARGET) | |
80 | cd treectrl; $(MAKE) -f makefile.unx clean$(TARGET) | |
81 | cd wxpoem; $(MAKE) -f makefile.unx clean$(TARGET) | |
82 | ||
83 | cleanmotif: clean | |
84 | motif: all |