]>
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) | |
94b49b93 JS |
22 | cd docview; $(MAKE) -f makefile.unx $(TARGET) |
23 | cd docvwmdi; $(MAKE) -f makefile.unx $(TARGET) | |
24 | cd dynamic; $(MAKE) -f makefile.unx $(TARGET) | |
e3a43801 | 25 | cd fractal; $(MAKE) -f makefile.unx $(TARGET) |
94b49b93 JS |
26 | cd grid; $(MAKE) -f makefile.unx $(TARGET) |
27 | cd help; $(MAKE) -f makefile.unx $(TARGET) | |
28 | cd image; $(MAKE) -f makefile.unx $(TARGET) | |
29 | cd internat; $(MAKE) -f makefile.unx $(TARGET) | |
30 | cd layout; $(MAKE) -f makefile.unx $(TARGET) | |
31 | cd memcheck; $(MAKE) -f makefile.unx $(TARGET) | |
32 | cd minifram; $(MAKE) -f makefile.unx $(TARGET) | |
33 | cd minimal; $(MAKE) -f makefile.unx $(TARGET) | |
94b49b93 JS |
34 | cd notebook; $(MAKE) -f makefile.unx $(TARGET) |
35 | cd printing; $(MAKE) -f makefile.unx $(TARGET) | |
e3a43801 | 36 | cd proplist; $(MAKE) -f makefile.unx $(TARGET) |
94b49b93 JS |
37 | cd resource; $(MAKE) -f makefile.unx $(TARGET) |
38 | cd sashtest; $(MAKE) -f makefile.unx $(TARGET) | |
39 | cd splitter; $(MAKE) -f makefile.unx $(TARGET) | |
40 | cd tab; $(MAKE) -f makefile.unx $(TARGET) | |
94b49b93 JS |
41 | cd toolbar; $(MAKE) -f makefile.unx $(TARGET) |
42 | cd typetest; $(MAKE) -f makefile.unx $(TARGET) | |
43 | cd validate; $(MAKE) -f makefile.unx $(TARGET) | |
44 | cd treectrl; $(MAKE) -f makefile.unx $(TARGET) | |
45 | cd wxpoem; $(MAKE) -f makefile.unx $(TARGET) | |
98ffbab9 JS |
46 | cd dnd; $(MAKE) -f makefile.unx $(TARGET) |
47 | cd thread; $(MAKE) -f makefile.unx $(TARGET) | |
94b49b93 JS |
48 | |
49 | clean: | |
e3a43801 | 50 | cd bombs; $(MAKE) -f makefile.unx clean$(TARGET) |
94b49b93 JS |
51 | cd config; $(MAKE) -f makefile.unx clean$(TARGET) |
52 | cd controls; $(MAKE) -f makefile.unx clean$(TARGET) | |
53 | cd dialogs; $(MAKE) -f makefile.unx clean$(TARGET) | |
94b49b93 JS |
54 | cd docview; $(MAKE) -f makefile.unx clean$(TARGET) |
55 | cd docvwmdi; $(MAKE) -f makefile.unx clean$(TARGET) | |
56 | cd dynamic; $(MAKE) -f makefile.unx clean$(TARGET) | |
e3a43801 | 57 | cd fractal; $(MAKE) -f makefile.unx clean$(TARGET) |
94b49b93 JS |
58 | cd grid; $(MAKE) -f makefile.unx clean$(TARGET) |
59 | cd help; $(MAKE) -f makefile.unx clean$(TARGET) | |
60 | cd image; $(MAKE) -f makefile.unx clean$(TARGET) | |
61 | cd internat; $(MAKE) -f makefile.unx clean$(TARGET) | |
62 | cd layout; $(MAKE) -f makefile.unx clean$(TARGET) | |
63 | cd memcheck; $(MAKE) -f makefile.unx clean$(TARGET) | |
64 | cd minifram; $(MAKE) -f makefile.unx clean$(TARGET) | |
65 | cd minimal; $(MAKE) -f makefile.unx clean$(TARGET) | |
94b49b93 JS |
66 | cd notebook; $(MAKE) -f makefile.unx clean$(TARGET) |
67 | cd printing; $(MAKE) -f makefile.unx clean$(TARGET) | |
e3a43801 | 68 | cd proplist; $(MAKE) -f makefile.unx clean$(TARGET) |
94b49b93 JS |
69 | cd resource; $(MAKE) -f makefile.unx clean$(TARGET) |
70 | cd sashtest; $(MAKE) -f makefile.unx clean$(TARGET) | |
71 | cd splitter; $(MAKE) -f makefile.unx clean$(TARGET) | |
72 | cd tab; $(MAKE) -f makefile.unx clean$(TARGET) | |
94b49b93 JS |
73 | cd toolbar; $(MAKE) -f makefile.unx clean$(TARGET) |
74 | cd typetest; $(MAKE) -f makefile.unx clean$(TARGET) | |
75 | cd validate; $(MAKE) -f makefile.unx clean$(TARGET) | |
76 | cd treectrl; $(MAKE) -f makefile.unx clean$(TARGET) | |
77 | cd wxpoem; $(MAKE) -f makefile.unx clean$(TARGET) | |
98ffbab9 JS |
78 | cd dnd; $(MAKE) -f makefile.unx clean$(TARGET) |
79 | cd thread; $(MAKE) -f makefile.unx clean$(TARGET) | |
94b49b93 JS |
80 | |
81 | cleanmotif: clean | |
82 | motif: all |