]> git.mxchange.org Git - simgear.git/blobdiff - simgear/math/Makefile.am
Patch to avoid the problem of the socket resource not yet being available
[simgear.git] / simgear / math / Makefile.am
index 75bec30e1b50bfba3a4f89adde408d4cd929ed48..4418aebfdbe74db47ecab43fbd63d53aeb4e5995 100644 (file)
@@ -4,22 +4,30 @@ check_PROGRAMS  = SGMathTest SGGeometryTest
 TESTS           = $(check_PROGRAMS)
 
 SGMathTest_SOURCES = SGMathTest.cxx
-SGMathTest_LDADD = libsgmath.a $(base_LIBS)
+
+SGMathTest_LDADD = \
+       libsgmath.a \
+       $(top_builddir)/simgear/debug/libsgdebug.a \
+       $(top_builddir)/simgear/structure/libsgstructure.a \
+       $(base_LIBS)
 
 SGGeometryTest_SOURCES = SGGeometryTest.cxx
-SGGeometryTest_LDADD = libsgmath.a $(base_LIBS)
+
+SGGeometryTest_LDADD = \
+       libsgmath.a \
+       $(top_builddir)/simgear/debug/libsgdebug.a \
+       $(top_builddir)/simgear/structure/libsgstructure.a \
+       $(base_LIBS)
 
 lib_LIBRARIES = libsgmath.a
 
 include_HEADERS = \
        interpolater.hxx \
        leastsqs.hxx \
-       point3d.hxx \
-       polar3d.hxx \
        sg_geodesy.hxx \
        sg_random.h \
        sg_types.hxx \
-       vector.hxx \
+       Math.hxx \
        SGBox.hxx \
        SGCMath.hxx \
        SGGeoc.hxx \
@@ -41,14 +49,16 @@ include_HEADERS = \
        SGTriangle.hxx \
        SGVec2.hxx \
        SGVec3.hxx \
-       SGVec4.hxx
+       SGVec4.hxx \
+       beziercurve.hxx \
+       project.hxx
 
 libsgmath_a_SOURCES = \
        interpolater.cxx \
        leastsqs.cxx \
        sg_random.c \
-       vector.cxx \
        SGGeod.cxx \
-       SGGeodesy.cxx
+       SGGeodesy.cxx \
+       project.cxx
 
 INCLUDES = -I$(top_srcdir)