1## Makefile.am -- Process this file with automake to produce a Makefile.in file.
2
3if TFEL_WIN
4AM_LDFLAGS  = -no-undefined -avoid-version -Wl,--add-stdcall-alias -Wl,--kill-at
5endif
6
7lib_LTLIBRARIES = libTFELNUMODIS.la
8libTFELNUMODIS_la_SOURCES = BCC.cxx 	        \
9                            Crystallo.cxx       \
10                            Cubic.cxx	        \
11                            FCC.cxx	        \
12                            GSystem.cxx	        \
13                            HCP.cxx	        \
14                            Hardening.cxx       \
15                            IBurgers.cxx        \
16                            IDirection.cxx      \
17                            IPlane.cxx	        \
18                            Utilities.cxx       \
19                            Vect3.cxx           \
20                            AnalyseJunction.cxx \
21                            FrankRead.cxx       \
22                            TripleNode.cxx
23
24libTFELNUMODIS_la_LIBADD = -L$(top_builddir)/src/Math      -lTFELMath      \
25		           -L$(top_builddir)/src/Exception -lTFELException \
26			   -L$(top_builddir)/src/Utilities -lTFELUtilities
27libTFELNUMODIS_la_CPPFLAGS  = -I$(top_srcdir)/include
28libTFELNUMODIS_la_CPPFLAGS += -DTFELNUMODIS_EXPORTS
29
30EXTRA_DIST = CMakeLists.txt
31