]> git.mxchange.org Git - simgear.git/blobdiff - simgear/math/Makefile.am
Add optional attribute condition to "copyProperties".
[simgear.git] / simgear / math / Makefile.am
index 466bb790723cf20be2fea7cc202e881821793f91..4418aebfdbe74db47ecab43fbd63d53aeb4e5995 100644 (file)
@@ -4,22 +4,29 @@ check_PROGRAMS  = SGMathTest SGGeometryTest
 TESTS           = $(check_PROGRAMS)
 
 SGMathTest_SOURCES = SGMathTest.cxx
-SGMathTest_LDADD = libsgmath.a -lsgstructure $(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 -lsgstructure $(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 \
@@ -43,14 +50,15 @@ include_HEADERS = \
        SGVec2.hxx \
        SGVec3.hxx \
        SGVec4.hxx \
-       beziercurve.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)