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
|
##############################################################################
## 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
MAINTAINERCLEANFILES = Makefile.in *~ *.orig
if ADDEXA
noinst_PROGRAMS = odexam od2exam od3exam
endif
noinst_LTLIBRARIES = librobertson.la libeutroph.la libfic.la
librobertson_la_SOURCES = vfunc_robertson.cpp
libeutroph_la_SOURCES = vfunc_eutroph.cpp
libfic_la_SOURCES = vfunc_fic.cpp
odexam_SOURCES = vgenodemain.cpp
odexam_LDADD = librobertson.la
od2exam_SOURCES = vgenodemain.cpp
od2exam_LDADD = libeutroph.la
od3exam_SOURCES = vgenodemain.cpp
od3exam_LDADD = libfic.la
|