-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.am
151 lines (115 loc) · 3.67 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#
# $Id: Makefile.am 2300 2014-04-29 14:16:46Z shackle $
#
# simple doxygen target
dox :
doxygen doc/Doxyfile
.PHONY: dox
#Disable distcleancheck -- It is particularly painful to keep the
# java build scripts able to delete all the files they create
# and I see no particular value in forcing them too.
distcleancheck:
@-
ACLOCAL_AMFLAGS=-I m4
lib_LTLIBRARIES= libposemath.la
bin_PROGRAMS=
#lib_LIBRARIES=@CONFIGURED_STATIC_LIBRARIES@
SUBDIRS=@CONFIGURED_SUBDIRS@
libposemath_la_SOURCES=src/posemath/_posemath.c \
src/posemath/_mathprnt.c \
src/posemath/posemath.cc \
src/posemath/mathprnt.cc \
src/posemath/sincos.c
#libposemath_la_LDFLAGS= -version-number 2014:4:29
libposemath_la_LDFLAGS= -release 2014-04-29 @ATLAS_LDFLAGS@
if POSEMATH_FLAGS_SET
libposemath_la_CXXFLAGS=@POSEMATH_CXXFLAGS@
libposemath_la_CFLAGS=@POSEMATH_CFLAGS@ @ATLAS_CFLAGS@
endif POSEMATH_FLAGS_SET
AM_CFLAGS= -I@srcdir@/src/posemath
check_PROGRAMS= testpmc testcirc testpmcpp
testpmc_SOURCES=src/posemath/testpmc.c
testpmc_LDADD= libposemath.la
testpmcpp_SOURCES=src/posemath/testpmcpp.cc
testpmcpp_LDADD= libposemath.la
testcirc_SOURCES=src/posemath/testcirc.c
testcirc_LDADD= libposemath.la
include_HEADERS= \
src/posemath/posemath.h \
src/posemath/mathprnt.h
libposemath_la_LIBADD= @LIBS@
EXTRA_DIST= \
acinclude.m4 \
aclocal.m4 \
add_header.sh \
add_header_to_all.sh \
AUTHORS \
bootstrap \
ChangeLog \
CHANGES.TXT \
cleanup.sh \
compile \
config.guess \
config.sub \
configure \
configure.ac \
COPYING \
depcomp \
doc/posemathdoc/index.html \
doc/posemathdoc/rcs.posemath.PM_CARTESIAN.html \
doc/posemathdoc/rcs.posemath.PM_ROTATION_VECTOR.html \
doc/posemathdoc/rcs.posemath.PmHomogeneous.html \
doc/posemathdoc/rcs.posemath.PmPose.html \
doc/posemathdoc/rcs.posemath.PmRotationMatrix.html \
doc/posemathdoc/rcs.posemath.PmException.html \
doc/posemathdoc/AllNames.html \
doc/posemathdoc/rcs.posemath.PM_ROTATION_MATRIX.html \
doc/posemathdoc/packages.html \
doc/posemathdoc/rcs.posemath.PM_LINE.html \
doc/posemathdoc/rcs.posemath.PM_CYLINDRICAL.html \
doc/posemathdoc/rcs.posemath.PmCartesian.html \
doc/posemathdoc/rcs.posemath.PM_POSE.html \
doc/posemathdoc/rcs.posemath.PM_XYA.html \
doc/posemathdoc/rcs.posemath.PmRotationVector.html \
doc/posemathdoc/rcs.posemath.PmSpherical.html \
doc/posemathdoc/rcs.posemath.Posemath.html \
doc/posemathdoc/rcs.posemath.PmRpy.html \
doc/posemathdoc/rcs.posemath.PM_EULER_ZYX.html \
doc/posemathdoc/rcs.posemath.PmQuaternion.html \
doc/posemathdoc/rcs.posemath.PmEulerZyz.html \
doc/posemathdoc/PoseMathCpp.htm \
doc/posemathdoc/rcs.posemath.PM_SPHERICAL.html \
doc/posemathdoc/rcs.posemath.PM_CIRCLE.html \
doc/posemathdoc/rcs.posemath.PM_RPY.html \
doc/posemathdoc/rcs.posemath.PmCircle.html \
doc/posemathdoc/rcs.posemath.PM_EULER_ZYZ.html \
doc/posemathdoc/rcs.posemath.testpm.html \
doc/posemathdoc/rcs.posemath.PM_QUATERNION.html \
doc/posemathdoc/rcs.posemath.PmEulerZyx.html \
doc/posemathdoc/rcs.posemath.PM_HOMOGENEOUS.html \
doc/posemathdoc/tree.html \
doc/posemathdoc/rcs.posemath.PmCylindrical.html \
doc/posemathdoc/rcs.posemath.PmLine.html \
etc/README.TXT \
NEWS \
README \
src/Makefile \
src/posemath/circutil.c \
src/posemath/Makefile \
src/posemath/Makefile.lib \
src/posemath/_mathprnt.c \
src/posemath/mathprnt.cc \
src/posemath/mathprnt.h \
src/posemath/matrpy_test.cc \
src/posemath/_posemath.c \
src/posemath/posemath.cc \
src/posemath/posemath.h \
src/posemath/sincos.c \
src/posemath/sincos.h \
src/posemath/testcirc.c \
src/posemath/testpmc.c \
src/posemath/testpmcpp.cc \
m4/m4_ax_atlas.m4
MOSTLYCLEANFILES=
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libposemath.pc