xref: /phasta/shapeFunction/Makefile.am (revision 595995161822a203c8467e0e4a253d7bd7d6df32)
1#bring in the macros defined in the m4 directory.. these include AX_GMI, and AX_DEBUG
2ACLOCAL_AMFLAGS = -I m4
3
4lib_LTLIBRARIES        = libshapeFunction.la
5libshapeFunction_la_SOURCES  = \
6 src/blend.c \
7 src/blendDrv.c \
8 src/Bn.c \
9 src/BnDrv.c \
10 src/En.c \
11 src/EnDrv.c \
12 src/Fn.c \
13 src/FnDrv.c \
14 src/Lagrange.c \
15 src/modeShape.c \
16 src/modeShapeDrv.c \
17 src/parDrv.c \
18 src/TriShapeAndDrv.cc \
19 src/uniformP.c
20
21libshapeFunction_la_include_HEADERS = \
22 src/shapeFuncInternals.h
23
24# The directory in which to install headers
25libshapeFunction_la_includedir = $(includedir)
26
27AM_CFLAGS= \
28 -I$(top_srcdir) \
29 $(DEBUG_FLAGS) \
30 $(OPTIMIZATION_FLAGS) \
31 $(PROFILING_FLAGS)
32
33AM_CXXFLAGS=${AM_CFLAGS}
34