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
|
# Library libcerf:
# Compute complex error functions, based on a new implementation of
# Faddeeva's w_of_z. Also provide Dawson and Voigt functions.
#
# File test/Makefile.am:
# Input for the build process using GNU autotools.
#
# Copyright:
# (C) 2012 Massachusetts Institute of Technology
# (C) 2013 Forschungszentrum Jülich GmbH
#
# Licence:
# MIT Licence. See ../COPYING.
#
# Authors:
# Steven G. Johnson, Massachusetts Institute of Technology, 2012, core author
# Joachim Wuttke, Forschungszentrum Jülich, 2013, package maintainer
#
# Website:
# http://apps.jcns.fz-juelich.de/libcerf
AM_CFLAGS += -I$(srcdir)/../lib
noinst_PROGRAMS = test_libcerf_1 runvoigt run_w_of_z
test_libcerf_1_SOURCES = test1.c
runvoigt_SOURCES = runvoigt.c
run_w_of_z_SOURCES = run_w_of_z.c
AM_LDFLAGS = -lm -L../lib -lcerf
|