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 73 74 75 76 77 78 79 80 81 82 83
|
##############################################################################
## Makefile.am -- Process this file with automake to produce Makefile.in
## Revision: $Id$
##
## Copyright (C) Andrea Walther, Andreas Griewank, Andreas Kowarz,
## Hristo Mitev, Sebastian Schlenkrich, Jean Utke, Olaf Vogel
##
## This file is part of ADOL-C. This software is provided as open source.
## Any use, reproduction, or distribution of the software constitutes
## recipient's acceptance of the terms of the accompanying license file.
##
##############################################################################
AM_CFLAGS = @ac_adolc_cflags@
AM_CXXFLAGS = @ac_adolc_cxxflags@
AM_CPPFLAGS = -I$(top_builddir)/ADOL-C/include -I$(top_srcdir)/ADOL-C/include
LIBS = $(builddir)/../clock/libclock.la -l${adolclib}
AM_LDFLAGS = -L$(top_builddir)/ADOL-C
CTRLFILES = detexam.ctrl \
eutrophexam.ctrl \
experimental.ctrl \
ficexam.ctrl \
gearexam.ctrl \
griewankexam.ctrl \
helmholtzexam.ctrl \
michalewitzexam.ctrl \
pargearexam.ctrl \
powexam.ctrl \
robertsonexam.ctrl \
rosenbrockexam.ctrl \
shuttlexam.ctrl \
simplevec.ctrl \
speelpenning.ctrl
EXTRA_DIST = rotations.h $(CTRLFILES)
MAINTAINERCLEANFILES = Makefile.in in_tape.1 op_tape.1 vs_tape1 *~ *.orig
if ADDEXA
noinst_PROGRAMS = detexam speelpenning griewankexam michalewitzexam \
rosenbrockexam powexam helmholtzexam shuttlexam \
gearexam pargearexam simplevec eutrophexam \
robertsonexam ficexam experimental
endif
detexam_SOURCES = sfunc_determinant.cpp sgenmain.cpp
speelpenning_SOURCES = sfunc_speelpenning.cpp sgenmain.cpp
griewankexam_SOURCES = sfunc_griewank.cpp sgenmain.cpp
michalewitzexam_SOURCES = sfunc_michalewitz.cpp sgenmain.cpp
rosenbrockexam_SOURCES = sfunc_rosenbrock.cpp sgenmain.cpp
powexam_SOURCES = sfunc_power.cpp sgenmain.cpp
helmholtzexam_SOURCES = sfunc_helmholtz.cpp sgenmain.cpp
shuttlexam_SOURCES = vfunc_shuttle.cpp vgenmain.cpp
gearexam_SOURCES = vfunc_gear.cpp vgenmain.cpp
pargearexam_SOURCES = vfunc_pargear.cpp rotations.cpp vgenmain.cpp
simplevec_SOURCES = vfunc_simplevec.cpp vgenmain.cpp
eutrophexam_SOURCES = vgenmain.cpp
eutrophexam_LDADD = $(builddir)/../ode/libeutroph.la
robertsonexam_SOURCES = vgenmain.cpp
robertsonexam_LDADD = $(builddir)/../ode/librobertson.la
ficexam_SOURCES = vgenmain.cpp
ficexam_LDADD = $(builddir)/../ode/libfic.la
experimental_SOURCES = sfunc_experimental.cpp sgenmain.cpp
|