Add a basic Android.mk for building with the Android NDK. This can serve as a good starting point for developers integrating libdivecomputer into an Android application. Co-authored-by: Sven Knoch <info@divinglog.de>
22 lines
360 B
Makefile
22 lines
360 B
Makefile
SUBDIRS = include src
|
|
|
|
if ENABLE_EXAMPLES
|
|
SUBDIRS += examples
|
|
endif
|
|
|
|
if ENABLE_DOC
|
|
SUBDIRS += doc
|
|
endif
|
|
|
|
AM_MAKEFLAGS = -s
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libdivecomputer.pc
|
|
|
|
EXTRA_DIST = \
|
|
libdivecomputer.pc.in \
|
|
contrib/android/Android.mk \
|
|
msvc/libdivecomputer.vcxproj \
|
|
msvc/libdivecomputer.vcxproj.filters
|