Commit 8713920b5ef6092930c5e49e76f08a27e4201cee
1 parent
6a4ea943
Exists in
master
and in
5 other branches
Atualizando Makefile android para gerar os apks via linha de comando
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
android/Makefile
... | ... | @@ -73,11 +73,15 @@ res/drawable-hdpi/%.png: %.svg |
73 | 73 | |
74 | 74 | #---[ Targets ]---------------------------------------------------------------- |
75 | 75 | |
76 | +all: pw3270-release-unsigned.apk | |
77 | + | |
76 | 78 | Debug: bin/pw3270-debug.apk |
77 | 79 | |
78 | 80 | bin/pw3270-debug.apk: icons libs/armeabi/lib3270.so $(JAVASRCDIR)/*.java |
79 | 81 | $(ANT) debug |
80 | 82 | |
83 | +pw3270-release-unsigned.apk: icons libs/armeabi/lib3270.so $(JAVASRCDIR)/*.java | |
84 | + $(ANT) release | |
81 | 85 | |
82 | 86 | libs/armeabi/lib3270.so: jni/lib3270jni.h jni/*.cpp |
83 | 87 | @$(NDKBUILD) | ... | ... |