-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.am
47 lines (41 loc) · 1.58 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
lib_LTLIBRARIES=libDFLib.la
libDFLib_la_SOURCES=DF_Abstract_Report.cpp \
DF_Report_Collection.cpp \
DF_ProjReport_Collection.cpp \
DF_XY_Point.cpp \
DF_LatLon_Point.cpp \
DF_Proj_Point.cpp \
DF_Proj_Report.cpp \
Util_Minimization_Methods.cpp \
gaussian_random.cpp
include_HEADERS = DF_Abstract_Point.hpp \
DF_Abstract_Report.hpp \
DF_LatLon_Point.hpp \
DF_LatLon_Report.hpp \
DF_ProjReport_Collection.hpp \
DF_Proj_Point.hpp \
DF_Proj_Report.hpp \
DF_Report_Collection.hpp \
DF_XY_Point.hpp \
DF_XY_Report.hpp \
Util_Abstract_Group.hpp \
Util_Minimization_Methods.hpp \
Util_Misc.hpp \
gaussian_random.hpp \
DFLib_port.h
bin_PROGRAMS = testlsDFfix testlsDF_ll testlsDF_proj SimpleDF SimpleDF2
testlsDFfix_SOURCES = testlsDFfix.cpp
testlsDFfix_LDADD=-L. -lDFLib
testlsDFfix_DEPENDENCIES=libDFLib.la
testlsDF_ll_SOURCES = testlsDF_ll.cpp
testlsDF_ll_LDADD=-L. -lDFLib
testlsDF_ll_DEPENDENCIES=libDFLib.la
testlsDF_proj_SOURCES = testlsDF_proj.cpp
testlsDF_proj_LDADD=-L. -lDFLib
testlsDF_proj_DEPENDENCIES=libDFLib.la
SimpleDF_SOURCES = SimpleDF.cpp
SimpleDF_LDADD=-L. -lDFLib
SimpleDF_DEPENDENCIES=libDFLib.la
SimpleDF2_SOURCES = SimpleDF2.cpp
SimpleDF2_LDADD=-L. -lDFLib
SimpleDF2_DEPENDENCIES=libDFLib.la