mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
I have an potential initial release of a backend for iOptron alt-az mounts. I have tested it and it appears to work well both from the command line and driven by Gpredict with my iEQ45Pro. I ran the source through astyle and I think that it's OK. Compiling and testing was done under Unbuntu 18. Bob KD8CGH
12 lines
264 B
Makefile
12 lines
264 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := rot_ioptron.c
|
|
LOCAL_MODULE := rot_ioptron
|
|
|
|
LOCAL_CFLAGS := -DHAVE_CONFIG_H
|
|
LOCAL_C_INCLUDES := android include src
|
|
LOCAL_LDLIBS := -lhamlib -Lobj/local/armeabi
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|