1noinst_LIBRARIES = libannotate.a
2
3AM_CPPFLAGS = -I@top_srcdir@/src @FREETYPE_CFLAGS@
4
5if USE_AR
6  libannotate_a_AR = $(AR) cru
7else
8  libannotate_a_AR = $(CXX) @xplanet_ARFLAGS@
9endif
10
11if HAVE_CSPICE
12  spiceFiles = addSpiceObjects.cpp
13endif
14
15EXTRA_libannotate_a_SOURCES = addSpiceObjects.cpp
16
17libannotate_a_SOURCES = 	\
18	Annotation.h 		\
19	Annotation.cpp 		\
20	addArcs.cpp		\
21	addMarkers.cpp		\
22	addSatellites.cpp	\
23	arrangeMarkers.cpp	\
24	drawArc.h		\
25	drawArc.cpp		\
26	drawCircle.h		\
27	drawCircle.cpp		\
28	Icon.h 			\
29	Icon.cpp 		\
30	LineSegment.h 		\
31	LineSegment.cpp 	\
32	Symbol.h 		\
33	Symbol.cpp 		\
34	Text.h 			\
35	Text.cpp 		\
36	libannotate.h		\
37	$(spiceFiles)
38
39