Improve Makefile
authorNiki Roo <niki@nikiroo.be>
Tue, 5 Dec 2017 12:18:25 +0000 (13:18 +0100)
committerNiki Roo <niki@nikiroo.be>
Tue, 5 Dec 2017 12:18:25 +0000 (13:18 +0100)
Makefile.base
android/app/build.gradle.base
configure.sh

index 9f6e09f33b8fead2843f0cc9d8a28600831d7ec8..acc36d3aa9ed8a229426aadb357082d4fcfe7a03 100644 (file)
@@ -2,10 +2,11 @@
 # 
 # Version:
 # - 1.0.0: add a version comment
-# - 1.1.0: add help, sjar
-# - 1.2.0: add apk
+# - 1.1.0: add 'help', 'sjar'
+# - 1.2.0: add 'apk'
+# - 1.2.1: improve 'apk' and add 'android'
 
-# Required parameters (the commented out ones are supposed to change per project):
+# Required parameters (the commented out ones are supposed to be per project):
 
 #MAIN = path to main java source to compile
 #MORE = path to supplementary needed resources not linked from MAIN
 #PREFIX = usually /usr/local (where to install the program)
 #TEST = path to main test source to compile
 #JAR_FLAGS += a list of things to pack, each usually prefixed with "-C bin/"
-#SJAR_FLAGS += a list of things to pack, each usually prefixed with "-C src/", for *-sources.jar files
+#SJAR_FLAGS += a list of things to pack, each usually prefixed with "-C src/",
+#              for *-sources.jar files
 #TEST_PARAMS = any parameter to pass to the test runnable when "test-run"
 #ID_FOR_ANDROID = id of activity to launch for Android
-#RM_FOR_ANDROID = paths to remove for APK generation
+#RM_FOR_ANDROID = packages (if it ends with /) or classes to ignore for APK 
+#              generation
 
 JAVAC = javac
 JAVAC_FLAGS += -encoding UTF-8 -d ./bin/ -cp ./src/
@@ -44,9 +47,10 @@ help:
        @echo " make run-test   : to run the test program from the binaries"
        @echo " make jrun       : to run the program from the jar file"
        @echo " make install    : to install the application into $$PREFIX"
+       @echo " make android    : to prepare the sources in android/ for Studio"
        @echo " make apk        : to compile the APK file"
 
-.PHONY: all clean mrproper mrpropre build run jrun jar sjar resources test-resources install libs love 
+.PHONY: all clean mrproper mrpropre build run jrun jar sjar resources test-resources install libs love apk android
 
 bin:
        @mkdir -p bin
@@ -76,7 +80,8 @@ test: test-resources
 
 clean:
        rm -rf bin/
-       rm -rf android/.gradle android/build android/app/build android/app/src android/app/build.gradle
+       rm -rf android/.gradle android/build android/app/build android/app/build.gradle
+       [ ! -L android/app/src/main/java ] || rm -rf android/app/src
        @echo Removing sources taken from libs...
        @for lib in libs/*-sources.jar libs/*-sources.patch.jar; do \
                if [ "$$lib" != 'libs/*-sources.jar' -a "$$lib" != 'libs/*-sources.patch.jar' ]; then \
@@ -181,30 +186,44 @@ install:
        echo "$(RJAR) $(RJAR_FLAGS) \"$(PREFIX)/lib/$(NAME).jar\" \"\$$@\"" >> "$(PREFIX)/bin/$(NAME)"
        chmod a+rx "$(PREFIX)/bin/$(NAME)"
 
-apk: libs ${NAME}.apk
-       @echo Building APK files...
-
-${NAME}.apk: ${NAME}-debug.apk
+android: android/app/src
 
-${NAME}-debug.apk:
+android/app/src:
        @[ -d android ] || echo No android/ directory found
        @[ -d android ]
        @[ -e android/local.properties ] || echo 'You need to create android/local.properties and add "sdk.dir=PATH_TO_SDK"'
        @[ -e android/local.properties ]
-       @mkdir -p android/app/src/main/java
-       cp src/AndroidManifest.xml android/app/src/main
-       cp -r res android/app/src/main
-       cp -r src/* android/app/src/main/java/
+       @mkdir -p android/app/src/main
+       @echo Linking sources...
+       @( \
+               cd android/app/src/main; \
+               ln -s ../../../../src/AndroidManifest.xml .; \
+               ln -s ../../../../res .; \
+               ln -s ../../../../src ./java; \
+       )
+
+apk: libs ${NAME}.apk
+       @echo Building APK files...
+
+${NAME}.apk: ${NAME}-debug.apk
+
+${NAME}-debug.apk: android
        @echo Starting gradlew assemble...
        @( \
-               cd android/app; \
-               cat build.gradle.base | sed 's:applicationId "":applicationId "${ID_FOR_ANDROID}":' > build.gradle; \
-               cd src/main/java; \
+               cd android/app/src/main/java; \
+               excl="\\n";\
                if [ "${RM_FOR_ANDROID}" != "" ]; then \
-                       echo Removing uneeded sources...; \
-                       rm -rf ${RM_FOR_ANDROID}; \
+                       echo Ignoring uneeded sources...; \
+                       for file in ${RM_FOR_ANDROID}; do \
+                               excl="$${excl}exclude '**/$${file}'\\n";\
+                       done; \
                fi; \
-               cd ../../../../; \
+               cd ../../../ ; \
+               cat build.gradle.base \
+                       | sed 's:\(applicationId "\)":\1${ID_FOR_ANDROID}":' \
+                       | sed "s:\s*exclude '':$$excl:g" \
+               > build.gradle; \
+               cd ../ ; \
                bash gradlew assemble && ( \
                        cd ..; \
                        cp android/app/build/outputs/apk/release/app-release-unsigned.apk ${NAME}.apk; \
index 9f5260aa38f37cb149e6dc5b1522b79b80dfb8a7..4dac2b37d2714b487adef74e605194bb8724e374 100644 (file)
@@ -16,6 +16,13 @@ android {
             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
         }
     }
+       sourceSets {
+               main {
+                       java {
+                               exclude ''
+                       }
+               }
+       }
 }
 
 dependencies {
@@ -26,3 +33,5 @@ dependencies {
     androidTestImplementation 'com.android.support.test:runner:1.0.1'
     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
 }
+
+
index 714f2f4f0ae2eddc9d410c16a2fcdd7017fc7378..8952fef2d7ec607ded0d7c6b4a3af0a1931339fe 100755 (executable)
@@ -82,7 +82,7 @@ echo "TEST_PARAMS = $cols $ok $ko" >> Makefile
 echo "NAME = fanfix" >> Makefile
 echo "PREFIX = $PREFIX" >> Makefile
 echo "JAR_FLAGS += -C bin/ org $JCLI $JTUI $JGUI -C bin/ be -C bin/ VERSION" >> Makefile
-echo "RM_FOR_ANDROID = jexer be/nikiroo/utils/ui be/nikiroo/fanfix/reader/tui be/nikiroo/fanfix/reader/ui" >> Makefile
+echo "RM_FOR_ANDROID = jexer be/nikiroo/utils/ui/* be/nikiroo/fanfix/reader/tui/* be/nikiroo/fanfix/reader/ui/*" >> Makefile
 echo "ID_FOR_ANDROID = be.nikiroo.fanfix.reader.android" >> Makefile
 #echo "SJAR_FLAGS += -C src/ org -C src/ jexer -C src/ be -C ./ LICENSE -C ./ README.md -C ./ VERSION" >> Makefile