mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
Am sending the source file for my CNCTRK backend used to pass AZ/EL data
to a linuxcnc-enabled rotator.
Thanks,
Bob
KI4SBL
(cherry picked from commit d899805ae6)
12 lines
254 B
Makefile
12 lines
254 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := cnctrk.c
|
|
LOCAL_MODULE := cnctrk
|
|
|
|
LOCAL_CFLAGS := -DHAVE_CONFIG_H
|
|
LOCAL_C_INCLUDES := android include src
|
|
LOCAL_LDLIBS := -lhamlib -Lobj/local/armeabi
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|