Mercurial > 510ConnectbotMonitor
annotate Makefile @ 10:f769411a72ce
setup for signed release builds
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 24 Jun 2014 07:35:55 -0700 |
parents | e7cdd6eaaeb3 |
children | 357bbbbcf201 |
rev | line source |
---|---|
0 | 1 #mc40 is "On Device Storage" |
2 #tc55 is "Internal Storage" | |
3 | |
10
f769411a72ce
setup for signed release builds
Carl Byington <carl@five-ten-sg.com>
parents:
8
diff
changeset
|
4 style=release |
0 | 5 dest=/run/user/1000/gvfs/mtp*/*torage/Download |
10
f769411a72ce
setup for signed release builds
Carl Byington <carl@five-ten-sg.com>
parents:
8
diff
changeset
|
6 apk='bin/510ConnectbotMonitor-$(style).apk' |
0 | 7 |
8 all: | |
10
f769411a72ce
setup for signed release builds
Carl Byington <carl@five-ten-sg.com>
parents:
8
diff
changeset
|
9 hg pull; hg update |
f769411a72ce
setup for signed release builds
Carl Byington <carl@five-ten-sg.com>
parents:
8
diff
changeset
|
10 make builder |
f769411a72ce
setup for signed release builds
Carl Byington <carl@five-ten-sg.com>
parents:
8
diff
changeset
|
11 |
f769411a72ce
setup for signed release builds
Carl Byington <carl@five-ten-sg.com>
parents:
8
diff
changeset
|
12 builder: |
f769411a72ce
setup for signed release builds
Carl Byington <carl@five-ten-sg.com>
parents:
8
diff
changeset
|
13 rm -rf gen bin |
0 | 14 android update project -p . -t android-16 |
10
f769411a72ce
setup for signed release builds
Carl Byington <carl@five-ten-sg.com>
parents:
8
diff
changeset
|
15 ant $(style) |
0 | 16 |
17 install: | |
18 cp $(apk) $(dest) | |
19 ls -al $(apk) $(dest) | |
20 | |
8 | 21 buildicon: |
22 cp -a base.510.icon.png res/drawable-xxxhdpi/icon.png | |
23 convert base.510.icon.png -resize 144x144 res/drawable-xxhdpi/icon.png | |
24 convert base.510.icon.png -resize 96x96 res/drawable-xhdpi/icon.png | |
25 convert base.510.icon.png -resize 72x72 res/drawable-hdpi/icon.png | |
26 convert base.510.icon.png -resize 48x48 res/drawable-mdpi/icon.png | |
27 convert base.510.icon.png -resize 36x36 res/drawable-ldpi/icon.png | |
28 | |
29 convert res/drawable-xxxhdpi/icon.png -resize 50% -colorspace Gray res/drawable-xxxhdpi/notification_icon.png | |
30 convert res/drawable-xxhdpi/icon.png -resize 50% -colorspace Gray res/drawable-xxhdpi/notification_icon.png | |
31 convert res/drawable-xhdpi/icon.png -resize 50% -colorspace Gray res/drawable-xhdpi/notification_icon.png | |
32 convert res/drawable-hdpi/icon.png -resize 50% -colorspace Gray res/drawable-hdpi/notification_icon.png | |
33 convert res/drawable-mdpi/icon.png -resize 50% -colorspace Gray res/drawable-mdpi/notification_icon.png | |
34 convert res/drawable-ldpi/icon.png -resize 50% -colorspace Gray res/drawable-ldpi/notification_icon.png | |
35 | |
0 | 36 indentc: |
37 indent --line-length100 \ | |
38 --brace-indent4 \ | |
39 --braces-on-if-line \ | |
40 --braces-on-func-def-line \ | |
41 --case-brace-indentation4 \ | |
42 --case-indentation4 \ | |
43 --comment-indentation60 \ | |
44 --cuddle-else \ | |
45 --declaration-comment-column60 \ | |
46 --no-tabs \ | |
47 -nbbo \ | |
48 -npcs \ | |
49 -nprs \ | |
50 -npsl \ | |
51 -saf -sai -saw \ | |
52 -i4 \ | |
53 $(shell find . -iname *.c -o -iname *.h -o -iname *.cpp) | |
54 | |
55 indentjava: | |
56 astyle --style=java \ | |
57 --attach-namespaces \ | |
58 --attach-classes \ | |
59 --indent-classes \ | |
60 --indent-switches \ | |
61 --indent-cases \ | |
62 --indent-namespaces \ | |
63 --break-blocks \ | |
64 --pad-oper \ | |
65 --pad-first-paren-out \ | |
66 --pad-header \ | |
67 --unpad-paren \ | |
68 --delete-empty-lines \ | |
69 --align-pointer=type \ | |
70 --break-closing-brackets \ | |
71 --keep-one-line-blocks \ | |
72 --keep-one-line-statements \ | |
73 --convert-tabs \ | |
74 --break-after-logical \ | |
75 --mode=java \ | |
76 $(shell find . -iname *.java | grep -v /gen/) | |
77 | |
78 docs: | |
1 | 79 (cd xml; make) |
80 |