File: makefile.am

package info (click to toggle)
cppad 2017.00.00.4-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 26,780 kB
  • ctags: 12,220
  • sloc: xml: 216,822; cpp: 63,586; sh: 9,233; makefile: 1,321; python: 637; ansic: 170
file content (43 lines) | stat: -rw-r--r-- 1,279 bytes parent folder | download
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
# $Id: makefile.am 3779 2016-01-01 11:26:11Z bradbell $
# -----------------------------------------------------------------------------
# CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-15 Bradley M. Bell
#
# CppAD is distributed under multiple licenses. This distribution is under
# the terms of the
#                     GNU General Public License Version 3.
#
# A copy of this license is included in the COPYING file of this distribution.
# Please visit http://www.coin-or.org/CppAD/ for information on other licenses.
# -----------------------------------------------------------------------------
# automake input file
#
# CppAD pusts all it's preprocessor definitions in the cppad/configure.hpp
DEFS          =
#
EXTRA_DIST        =  \
	speed_program.cpp
#
check_PROGRAMS    = speed_example
#
AM_CPPFLAGS       = -I. -I$(top_srcdir) $(BOOST_INCLUDE) $(EIGEN_INCLUDE)
#
AM_CXXFLAGS       = -g $(CXX_FLAGS)
#
LDADD             = -lspeed
AM_LDFLAGS        = -L../src
speed_example_SOURCES   = \
	example.cpp \
	det_by_lu.cpp \
	det_by_minor.cpp \
	det_of_minor.cpp \
	elapsed_seconds.cpp \
	mat_sum_sq.cpp \
	ode_evaluate.cpp \
	sparse_hes_fun.cpp \
	sparse_jac_fun.cpp \
	speed_test.cpp \
	time_test.cpp \
	../src/microsoft_timer.cpp

test: check
	./speed_example