mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
This is necessary to keep alignment between the client view of rig->state and the shared libarary view Including PTHREAD functions in rig->state necessitated this as HAVE_PTHREAD only defined during hamlib compilation. Clients including hamlib/rig.h did not pick up all the HAVE* config variable that control what gets included https://github.com/Hamlib/Hamlib/issues/947
23 lines
569 B
Makefile
23 lines
569 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := rotctld.c rotctl_parse.c dumpcaps_rot.c ../src/rot_settings.c
|
|
LOCAL_MODULE := rotctld
|
|
|
|
LOCAL_CFLAGS :=
|
|
LOCAL_C_INCLUDES := android include src
|
|
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := rotctl.c rotctl_parse.c dumpcaps_rot.c ../src/rot_settings.c
|
|
LOCAL_MODULE := rotctl
|
|
|
|
LOCAL_CFLAGS :=
|
|
LOCAL_C_INCLUDES := android include src
|
|
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)
|
|
|
|
include $(BUILD_EXECUTABLE)
|