]> git.saurik.com Git - wxWidgets.git/blob - samples/makefile.unx
Unicode fix.
[wxWidgets.git] / samples / makefile.unx
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:
18 cd bombs; $(MAKE) -f makefile.unx $(TARGET)
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 docview; $(MAKE) -f makefile.unx $(TARGET)
23 cd docvwmdi; $(MAKE) -f makefile.unx $(TARGET)
24 cd dynamic; $(MAKE) -f makefile.unx $(TARGET)
25 cd fractal; $(MAKE) -f makefile.unx $(TARGET)
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)
34 cd notebook; $(MAKE) -f makefile.unx $(TARGET)
35 cd printing; $(MAKE) -f makefile.unx $(TARGET)
36 cd proplist; $(MAKE) -f makefile.unx $(TARGET)
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)
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)
46 cd dnd; $(MAKE) -f makefile.unx $(TARGET)
47 cd thread; $(MAKE) -f makefile.unx $(TARGET)
48
49 clean:
50 cd bombs; $(MAKE) -f makefile.unx clean$(TARGET)
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)
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)
57 cd fractal; $(MAKE) -f makefile.unx clean$(TARGET)
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)
66 cd notebook; $(MAKE) -f makefile.unx clean$(TARGET)
67 cd printing; $(MAKE) -f makefile.unx clean$(TARGET)
68 cd proplist; $(MAKE) -f makefile.unx clean$(TARGET)
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)
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)
78 cd dnd; $(MAKE) -f makefile.unx clean$(TARGET)
79 cd thread; $(MAKE) -f makefile.unx clean$(TARGET)
80
81 cleanmotif: clean
82 motif: all