- they are not used anywhere in sg/fgfs - and are very clearly *not* GPL compatible!
47 lines
746 B
Makefile
47 lines
746 B
Makefile
includedir = @includedir@/math
|
|
|
|
noinst_PROGRAMS = SGMathTest
|
|
check_PROGRAMS = SGMathTest
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
SGMathTest_SOURCES = SGMathTest.cxx
|
|
SGMathTest_LDADD = libsgmath.a $(base_LIBS)
|
|
|
|
|
|
lib_LIBRARIES = libsgmath.a
|
|
|
|
include_HEADERS = \
|
|
interpolater.hxx \
|
|
leastsqs.hxx \
|
|
point3d.hxx \
|
|
polar3d.hxx \
|
|
sg_geodesy.hxx \
|
|
sg_memory.h \
|
|
sg_random.h \
|
|
sg_types.hxx \
|
|
vector.hxx \
|
|
fastmath.hxx \
|
|
SGGeoc.hxx \
|
|
SGGeod.hxx \
|
|
SGGeodesy.hxx \
|
|
SGLimits.hxx \
|
|
SGMatrix.hxx \
|
|
SGMath.hxx \
|
|
SGMisc.hxx \
|
|
SGQuat.hxx \
|
|
SGVec4.hxx \
|
|
SGVec3.hxx
|
|
|
|
|
|
libsgmath_a_SOURCES = \
|
|
interpolater.cxx \
|
|
leastsqs.cxx \
|
|
polar3d.cxx \
|
|
sg_geodesy.cxx \
|
|
sg_random.c \
|
|
vector.cxx \
|
|
fastmath.cxx \
|
|
SGGeodesy.cxx
|
|
|
|
INCLUDES = -I$(top_srcdir)
|