forked from geodynamics/spatialdata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
72 lines (63 loc) · 1.98 KB
/
Makefile.am
File metadata and controls
72 lines (63 loc) · 1.98 KB
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
# =================================================================================================
# This code is part of SpatialData, developed through the Computational Infrastructure
# for Geodynamics (https://github.com/geodynamics/spatialdata).
#
# Copyright (c) 2010-2025, University of California, Davis and the SpatialData Development Team.
# All rights reserved.
#
# See https://mit-license.org/ and LICENSE.md and for license information.
# =================================================================================================
SUBDIRS = \
geocoords \
spatialdb \
units \
utils \
muparser
lib_LTLIBRARIES = libspatialdata.la
libspatialdata_la_SOURCES = \
geocoords/Converter.cc \
geocoords/CoordSys.cc \
geocoords/CSCart.cc \
geocoords/CSGeo.cc \
geocoords/CSGeoLocal.cc \
geocoords/CSPicklerAscii.cc \
spatialdb/AnalyticDB.cc \
spatialdb/CompositeDB.cc \
spatialdb/GocadVoxet.cc \
spatialdb/GravityField.cc \
spatialdb/SCECCVMH.cc \
spatialdb/SimpleGridDB.cc \
spatialdb/SimpleDB.cc \
spatialdb/SpatialDB.cc \
spatialdb/SimpleDBData.cc \
spatialdb/SimpleDBQuery.cc \
spatialdb/SimpleIO.cc \
spatialdb/SimpleIOAscii.cc \
spatialdb/SimpleGridAscii.cc \
spatialdb/TimeHistory.cc \
spatialdb/TimeHistoryIO.cc \
spatialdb/UniformDB.cc \
spatialdb/UserFunctionDB.cc \
spatialdb/cspatialdb.cc \
units/Nondimensional.cc \
units/Parser.cc \
utils/LineParser.cc \
utils/PointsStream.cc \
utils/SpatialdataVersion.cc \
muparser/muParser.cpp \
muparser/muParserBase.cpp \
muparser/muParserBytecode.cpp \
muparser/muParserCallback.cpp \
muparser/muParserError.cpp \
muparser/muParserInt.cpp \
muparser/muParserTokenReader.cpp
libspatialdata_la_LDFLAGS = $(AM_LDFLAGS) $(PYTHON_LDFLAGS) $(PYTHON_LA_LDFLAGS)
libspatialdata_la_LIBADD = \
-lproj \
$(PYTHON_BLDLIBRARY) $(PYTHON_LIBS) $(PYTHON_SYSLIBS)
AM_CPPFLAGS = -I$(top_srcdir)/libsrc
AM_CPPFLAGS += -DDATADIR=$(pkgdatadir)/geocoords -I$(PYTHON_INCDIR)
dist_noinstall = \
README.rst \
LICENSE
# End of file