Mercurial > 510ConnectbotMonitor
view Makefile @ 24:4f1cc4f44c41
add mechanism to allow getfield from other threads
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 01 May 2015 12:00:38 -0700 |
parents | 357bbbbcf201 |
children | 807f7e4eaebe |
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/510ConnectbotMonitor-$(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 android update project -p . -t android-16 ant $(style) 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-first-paren-out \ --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/) docs: (cd xml; make)