mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
* Added new rotor module (18) for Meade telescope rotors * Implemented all needed rotor functions * Added README.md * Tested with DS-2000 Rotor with Autostar 494 and 506 serial cable * Tested on Linux (Debian) with rotctl and gpredict
12 lines
No EOL
251 B
Makefile
12 lines
No EOL
251 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := meade.c
|
|
LOCAL_MODULE := meade
|
|
|
|
LOCAL_CFLAGS := -DHAVE_CONFIG_H
|
|
LOCAL_C_INCLUDES := android include src
|
|
LOCAL_LDLIBS := -lhamlib -Lobj/local/armeabi
|
|
|
|
include $(BUILD_STATIC_LIBRARY) |