File: Makefile.am

package info (click to toggle)
gsl 2.8%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 29,088 kB
  • sloc: ansic: 269,984; sh: 4,535; makefile: 902; python: 69
file content (24 lines) | stat: -rw-r--r-- 953 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
noinst_LTLIBRARIES = libgslcomplex.la 

pkginclude_HEADERS = gsl_complex.h gsl_complex_math.h test_source.c

AM_CPPFLAGS = -I$(top_srcdir)

libgslcomplex_la_SOURCES = math.c inline.c

TESTS = $(check_PROGRAMS)
check_PROGRAMS = test test_c11

test_SOURCES = test.c results.h results1.h results2.h results_real.h results_zreal.h
test_LDADD = libgslcomplex.la ../err/libgslerr.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la  ../utils/libutils.la

test_c11_SOURCES = $(test_SOURCES)
test_c11_CFLAGS = -DTEST_C11
test_c11_LDADD = $(test_LDADD)

results:
	emacs -batch -l test.el -f test1 | sed  's/00\+e/0e/g' > results1.h
	emacs -batch -l test.el -f test2 | sed  's/00\+e/0e/g' > results.h
	emacs -batch -l test.el -f test3 | sed  's/00\+e/0e/g' > results_real.h
	emacs -batch -l test.el -f test4 | sed  's/00\+e/0e/g' > results2.h
	emacs -batch -l test.el -f test5 | sed  's/00\+e/0e/g' > results_zreal.h