Mercurial > 510Connectbot
view Makefile @ 200:6cc9a9e622bc
read deployment.connections on startup for global preferences also
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 02 Jul 2014 21:03:44 -0700 |
parents | 18aceeae6681 |
children | 7e4352b53f24 |
line wrap: on
line source
#mc40 is "On Device Storage" #tc55 is "Internal Storage" style=release dest=/run/user/1000/gvfs/mtp*/*torage/Download apk='bin/510Connectbot-$(style).apk' ifeq ($(style),release) debuggable=false else debuggable=true endif all: hg pull; hg update make builder builder: sed -i -e 's/android:debuggable=".*"/android:debuggable="$(debuggable)"/g' AndroidManifest.xml rm -rf gen bin ndk-build clean; V=1 ndk-build android update project -p . -t android-16 ant $(style) genkey: 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 docs: (cd xml; make) install: cp $(apk) $(dest) ls -al $(apk) $(dest) buildicon: cp -a base.510.icon.png res/drawable-xxxhdpi/icon.png convert base.510.icon.png -resize 144x144 res/drawable-xxhdpi/icon.png convert base.510.icon.png -resize 96x96 res/drawable-xhdpi/icon.png convert base.510.icon.png -resize 72x72 res/drawable-hdpi/icon.png convert base.510.icon.png -resize 48x48 res/drawable-mdpi/icon.png convert base.510.icon.png -resize 36x36 res/drawable-ldpi/icon.png convert res/drawable-xxxhdpi/icon.png -resize 50% -colorspace Gray res/drawable-xxxhdpi/notification_icon.png convert res/drawable-xxhdpi/icon.png -resize 50% -colorspace Gray res/drawable-xxhdpi/notification_icon.png convert res/drawable-xhdpi/icon.png -resize 50% -colorspace Gray res/drawable-xhdpi/notification_icon.png convert res/drawable-hdpi/icon.png -resize 50% -colorspace Gray res/drawable-hdpi/notification_icon.png convert res/drawable-mdpi/icon.png -resize 50% -colorspace Gray res/drawable-mdpi/notification_icon.png convert res/drawable-ldpi/icon.png -resize 50% -colorspace Gray res/drawable-ldpi/notification_icon.png indentc: indent --line-length100 \ --brace-indent4 \ --braces-on-if-line \ --braces-on-func-def-line \ --case-brace-indentation4 \ --case-indentation4 \ --comment-indentation60 \ --cuddle-else \ --declaration-comment-column60 \ --no-tabs \ -nbbo \ -npcs \ -nprs \ -npsl \ -saf -sai -saw \ -i4 \ $(shell find . -iname *.c -o -iname *.h -o -iname *.cpp) indentjava: astyle --style=java \ --attach-namespaces \ --attach-classes \ --indent-classes \ --indent-switches \ --indent-cases \ --indent-namespaces \ --break-blocks \ --pad-oper \ --pad-header \ --unpad-paren \ --delete-empty-lines \ --align-pointer=type \ --break-closing-brackets \ --keep-one-line-blocks \ --keep-one-line-statements \ --convert-tabs \ --break-after-logical \ --mode=java \ $(shell find . -iname *.java | grep -v /gen/) internaldocs: doxygen