forked from xamarin/mac-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
63 lines (60 loc) · 1.59 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
MDTOOL=/Applications/MonoDevelop.app/Contents/MacOS/mdtool
XDIRS = \
NSAlert \
AnimatingViews \
ButtonMadness \
CAQuartzComposition \
CoreAnimationBook/BackgroundFilteredView\
CoreAnimationBook/CustomAnimationTiming \
CoreAnimationBook/CustomizeAnimation \
CoreAnimationBook/CustomizeAnimation2 \
CoreAnimationBook/FilteredView \
CoreAnimationBook/GroupAnimation \
CoreAnimationBook/KeyFrameMoveAView \
CoreAnimationBook/LayerBackedControls \
CoreAnimationBook/QCBackground \
CoreAnimationBook/TimedAnimation \
CoreAnimationBook/QCBackground \
CoreTextArcMonoMac \
CoreWLANWirelessManager \
DatePicker \
DockAppIcon \
DocumentSample \
DrawerMadness \
Fire \
GLFullScreen \
GLSLShader \
GlossyClock \
ImageKitDemoStep1 \
macdoc \
MonoMacGameWindow \
NSTableViewBinding \
OpenGLLayer \
OpenGLViewSample \
OpenGL-NeHe/NeHeLesson1 \
OpenGL-NeHe/NeHeLesson2 \
OpenGL-NeHe/NeHeLesson3 \
OpenGL-NeHe/NeHeLesson4 \
OpenGL-NeHe/NeHeLesson5 \
OpenGL-NeHe/NeHeLesson6 \
OpenGL-NeHe/NeHeLesson7 \
OpenGL-NeHe/NeHeLesson8 \
OpenGL-NeHe/NeHeLesson9 \
PredicateEditorSample \
PopupBindings \
QTRecorder \
RoundedTransparentWindow \
Rulers \
SearchField \
SkinnableApp \
StillMotion \
TwoMinuteGrowler \
VillainTracker \
WhereIsMyMac
all:
for i in $(XDIRS); do (cd $$i; $(MDTOOL) build); done
(cd MicroSamples; make)
clean:
-for i in $(DIRS); do (cd $$i; make clean); done
-for i in $(XDIRS); do (cd $$i; rm -rf bin); done
-(cd MicroSamples; rm -rf *.exe *.mdb)