34 lines
740 B
Makefile
34 lines
740 B
Makefile
lib_LIBRARIES = libsgp4.a
|
|
libsgp4_a_SOURCES = \
|
|
CoordGeodetic.cpp \
|
|
CoordTopocentric.cpp \
|
|
DateTime.cpp \
|
|
Eci.cpp \
|
|
Globals.cpp \
|
|
Observer.cpp \
|
|
OrbitalElements.cpp \
|
|
SGP4.cpp \
|
|
SolarPosition.cpp \
|
|
TimeSpan.cpp \
|
|
Tle.cpp \
|
|
Util.cpp \
|
|
Vector.cpp
|
|
|
|
include_HEADERS = \
|
|
CoordGeodetic.h \
|
|
CoordTopocentric.h \
|
|
DateTime.h \
|
|
DecayedException.h \
|
|
Eci.h \
|
|
Globals.h \
|
|
Observer.h \
|
|
OrbitalElements.h \
|
|
SatelliteException.h \
|
|
SGP4.h \
|
|
SolarPosition.h \
|
|
TimeSpan.h \
|
|
Tle.h \
|
|
TleException.h \
|
|
Util.h \
|
|
Vector.h
|