Hi Fred, > Define local mapping to glib path, otherwise this has to be inside central > place in the build repository. > > Retrieve Bluetooth version from configure.ac. > --- > .gitignore | 2 + > Makefile.android | 5 +++ I rather keep the changes to a global Makefile separate from the android/ stuff. > android/Android.mk | 24 ++++++++++++ > android/main.c | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++ > 4 files changed, 141 insertions(+) > create mode 100644 android/main.c It is perfectly fine to split this into two patches. Add the *.c file(s) first and in a second patch add the build changes. > diff --git a/.gitignore b/.gitignore > index 8a25a3e..3707209 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -98,3 +98,5 @@ unit/test-gobex-packet > unit/test-gobex-transfer > unit/test-*.log > unit/test-*.trs > + > +android/bluetoothd > diff --git a/Makefile.android b/Makefile.android > index 5e43730..e056dce 100644 > --- a/Makefile.android > +++ b/Makefile.android > @@ -1,4 +1,9 @@ > > if ANDROID > +noinst_PROGRAMS += android/bluetoothd > + > +android_bluetoothd_SOURCES = android/main.c > +android_bluetoothd_LDADD = @GLIB_LIBS@ > + > EXTRA_DIST += android/Android.mk > endif You can not put the EXTRA_DIST under an if ANDROID. Make that part global. I expect that make distcheck works no matter what is configured. Check the final tarballs if all files are actually included. Regards Marcel -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html