]> git.mxchange.org Git - simgear.git/blobdiff - simgear/math/Makefile.am
fix a typo
[simgear.git] / simgear / math / Makefile.am
index d9124926b239be50d78760e948f86521e2cc72bf..466bb790723cf20be2fea7cc202e881821793f91 100644 (file)
@@ -4,10 +4,10 @@ check_PROGRAMS  = SGMathTest SGGeometryTest
 TESTS           = $(check_PROGRAMS)
 
 SGMathTest_SOURCES = SGMathTest.cxx
-SGMathTest_LDADD = libsgmath.a $(base_LIBS)
+SGMathTest_LDADD = libsgmath.a -lsgstructure $(base_LIBS)
 
 SGGeometryTest_SOURCES = SGGeometryTest.cxx
-SGGeometryTest_LDADD = libsgmath.a $(base_LIBS)
+SGGeometryTest_LDADD = libsgmath.a -lsgstructure $(base_LIBS)
 
 lib_LIBRARIES = libsgmath.a
 
@@ -20,6 +20,7 @@ include_HEADERS = \
        sg_random.h \
        sg_types.hxx \
        vector.hxx \
+       Math.hxx \
        SGBox.hxx \
        SGCMath.hxx \
        SGGeoc.hxx \
@@ -41,13 +42,15 @@ include_HEADERS = \
        SGTriangle.hxx \
        SGVec2.hxx \
        SGVec3.hxx \
-       SGVec4.hxx
+       SGVec4.hxx \
+       beziercurve.hxx
 
 libsgmath_a_SOURCES = \
        interpolater.cxx \
        leastsqs.cxx \
        sg_random.c \
        vector.cxx \
+       SGGeod.cxx \
        SGGeodesy.cxx
 
 INCLUDES = -I$(top_srcdir)