Mercurial > 510Connectbot
annotate Makefile @ 360:7eb24880b111
add help files to the web documentation
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 04 Aug 2014 08:10:12 -0700 |
parents | 5c17707d94b0 |
children | d51bf957d955 |
rev | line source |
---|---|
0 | 1 #mc40 is "On Device Storage" |
2 #tc55 is "Internal Storage" | |
3 | |
4 style=release | |
5 dest=/run/user/1000/gvfs/mtp*/*torage/Download | |
6 apk='bin/510Connectbot-$(style).apk' | |
170
f0f41cd3604b
set debuggable flag depending on build style
Carl Byington <carl@five-ten-sg.com>
parents:
169
diff
changeset
|
7 ifeq ($(style),release) |
171
18aceeae6681
fix inverted style/debuggable test
Carl Byington <carl@five-ten-sg.com>
parents:
170
diff
changeset
|
8 debuggable=false |
170
f0f41cd3604b
set debuggable flag depending on build style
Carl Byington <carl@five-ten-sg.com>
parents:
169
diff
changeset
|
9 else |
171
18aceeae6681
fix inverted style/debuggable test
Carl Byington <carl@five-ten-sg.com>
parents:
170
diff
changeset
|
10 debuggable=true |
170
f0f41cd3604b
set debuggable flag depending on build style
Carl Byington <carl@five-ten-sg.com>
parents:
169
diff
changeset
|
11 endif |
f0f41cd3604b
set debuggable flag depending on build style
Carl Byington <carl@five-ten-sg.com>
parents:
169
diff
changeset
|
12 |
0 | 13 |
14 all: | |
73
accf93be8c12
update documentation; use xterm-256color as default terminal type
Carl Byington <carl@five-ten-sg.com>
parents:
1
diff
changeset
|
15 hg pull; hg update |
accf93be8c12
update documentation; use xterm-256color as default terminal type
Carl Byington <carl@five-ten-sg.com>
parents:
1
diff
changeset
|
16 make builder |
accf93be8c12
update documentation; use xterm-256color as default terminal type
Carl Byington <carl@five-ten-sg.com>
parents:
1
diff
changeset
|
17 |
accf93be8c12
update documentation; use xterm-256color as default terminal type
Carl Byington <carl@five-ten-sg.com>
parents:
1
diff
changeset
|
18 builder: |
170
f0f41cd3604b
set debuggable flag depending on build style
Carl Byington <carl@five-ten-sg.com>
parents:
169
diff
changeset
|
19 sed -i -e 's/android:debuggable=".*"/android:debuggable="$(debuggable)"/g' AndroidManifest.xml |
74 | 20 rm -rf gen bin |
360
7eb24880b111
add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
332
diff
changeset
|
21 (cd help; make) |
0 | 22 ndk-build clean; V=1 ndk-build |
23 android update project -p . -t android-16 | |
24 ant $(style) | |
25 | |
26 genkey: | |
1
ab7313512aba
missing comma in DN, regenerate keystore
Carl Byington <carl@five-ten-sg.com>
parents:
0
diff
changeset
|
27 keytool -genkeypair -keystore 510Connectbot.keystore -alias 510Connectbot -dname "cn=510Connectbot , ou=510Connectbot, o=five-ten-sg, o=com, c=US" -keyalg RSA -keysize 2048 -validity 10000 |
0 | 28 |
29 docs: | |
30 (cd xml; make) | |
360
7eb24880b111
add help files to the web documentation
Carl Byington <carl@five-ten-sg.com>
parents:
332
diff
changeset
|
31 (cd help; make) |
0 | 32 |
33 install: | |
34 cp $(apk) $(dest) | |
35 ls -al $(apk) $(dest) | |
36 | |
116 | 37 buildicon: |
159
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
38 cp -a base.510.icon.png res/drawable-xxxhdpi/icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
39 convert base.510.icon.png -resize 144x144 res/drawable-xxhdpi/icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
40 convert base.510.icon.png -resize 96x96 res/drawable-xhdpi/icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
41 convert base.510.icon.png -resize 72x72 res/drawable-hdpi/icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
42 convert base.510.icon.png -resize 48x48 res/drawable-mdpi/icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
43 convert base.510.icon.png -resize 36x36 res/drawable-ldpi/icon.png |
116 | 44 |
159
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
45 convert res/drawable-xxxhdpi/icon.png -resize 50% -colorspace Gray res/drawable-xxxhdpi/notification_icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
46 convert res/drawable-xxhdpi/icon.png -resize 50% -colorspace Gray res/drawable-xxhdpi/notification_icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
47 convert res/drawable-xhdpi/icon.png -resize 50% -colorspace Gray res/drawable-xhdpi/notification_icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
48 convert res/drawable-hdpi/icon.png -resize 50% -colorspace Gray res/drawable-hdpi/notification_icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
49 convert res/drawable-mdpi/icon.png -resize 50% -colorspace Gray res/drawable-mdpi/notification_icon.png |
13ca2a7a63f3
add icons up to 192x192 xxxhdpi
Carl Byington <carl@five-ten-sg.com>
parents:
116
diff
changeset
|
50 convert res/drawable-ldpi/icon.png -resize 50% -colorspace Gray res/drawable-ldpi/notification_icon.png |
0 | 51 |
52 indentc: | |
53 indent --line-length100 \ | |
54 --brace-indent4 \ | |
55 --braces-on-if-line \ | |
56 --braces-on-func-def-line \ | |
57 --case-brace-indentation4 \ | |
58 --case-indentation4 \ | |
59 --comment-indentation60 \ | |
60 --cuddle-else \ | |
61 --declaration-comment-column60 \ | |
62 --no-tabs \ | |
63 -nbbo \ | |
64 -npcs \ | |
65 -nprs \ | |
66 -npsl \ | |
67 -saf -sai -saw \ | |
68 -i4 \ | |
69 $(shell find . -iname *.c -o -iname *.h -o -iname *.cpp) | |
70 | |
71 | |
72 indentjava: | |
73 astyle --style=java \ | |
74 --attach-namespaces \ | |
75 --attach-classes \ | |
76 --indent-classes \ | |
77 --indent-switches \ | |
78 --indent-cases \ | |
79 --indent-namespaces \ | |
80 --break-blocks \ | |
332 | 81 --unpad-paren \ |
0 | 82 --pad-oper \ |
83 --pad-header \ | |
84 --delete-empty-lines \ | |
85 --align-pointer=type \ | |
86 --break-closing-brackets \ | |
87 --keep-one-line-blocks \ | |
88 --keep-one-line-statements \ | |
89 --convert-tabs \ | |
90 --break-after-logical \ | |
91 --mode=java \ | |
92 $(shell find . -iname *.java | grep -v /gen/) | |
93 | |
94 internaldocs: | |
95 doxygen |