mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
append rotctl CLI tool to android.mk file save target az/el to priv pointor, make them accessible more. remove some c++ warnings. bug fixes. codes optimization. Signed-off-by: AuroraRAS <chplee@gmail.com>
23 lines
600 B
Makefile
23 lines
600 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 := -DHAVE_CONFIG_H
|
|
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 := -DHAVE_CONFIG_H
|
|
LOCAL_C_INCLUDES := android include src
|
|
LOCAL_LDLIBS := -lhamlib -Lobj/local/$(TARGET_ARCH_ABI)
|
|
|
|
include $(BUILD_EXECUTABLE)
|