mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
Android makefile fragments are distributed as extra distribution files by the GNU build system but are otherwise ignored. The Android build support is independent and does not rely on the GNU build system. See android/README.android for more info. Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
15 lines
424 B
Makefile
15 lines
424 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := elektor304.c drt1.c dwt.c usrp.c elektor507.c \
|
|
dds60.c miniVNA.c si570avrusb.c funcube.c fifisdr.c hiqsdr.c \
|
|
pcrotor.c kit.c
|
|
LOCAL_MODULE := kit
|
|
|
|
LOCAL_MODULE_FILENAME := libhamlib-$(LOCAL_MODULE)
|
|
LOCAL_CFLAGS := -DHAVE_CONFIG_H
|
|
LOCAL_C_INCLUDES := android include src
|
|
LOCAL_LDLIBS := -lhamlib -Lobj/local/armeabi
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|