2000-04-27 22:03:57 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
2008-08-27 15:39:05 +02:00
|
|
|
noinst_LTLIBRARIES = libcmaths.la
|
2000-04-27 22:03:57 +02:00
|
|
|
|
2008-08-27 15:39:05 +02:00
|
|
|
libcmaths_la_SOURCES = \
|
2000-10-14 23:49:25 +02:00
|
|
|
cmath.h \
|
2000-04-27 22:03:57 +02:00
|
|
|
cmath1.c \
|
|
|
|
|
cmath1.h \
|
|
|
|
|
cmath2.c \
|
|
|
|
|
cmath2.h \
|
|
|
|
|
cmath3.c \
|
|
|
|
|
cmath3.h \
|
|
|
|
|
cmath4.c \
|
|
|
|
|
cmath4.h
|
|
|
|
|
|
2005-05-18 14:47:24 +02:00
|
|
|
## Test programs fail to build on Windows
|
2008-12-31 15:42:49 +01:00
|
|
|
if !WINDOWS
|
2010-09-17 18:11:25 +02:00
|
|
|
if !TCLWIN
|
2005-05-18 14:47:24 +02:00
|
|
|
|
2001-12-04 20:37:56 +01:00
|
|
|
noinst_PROGRAMS = test_cx_mag test_cx_j test_cx_ph
|
2010-09-17 18:11:25 +02:00
|
|
|
|
2000-06-03 14:08:35 +02:00
|
|
|
test_cx_ph_SOURCES = \
|
|
|
|
|
test_cx_ph.c
|
|
|
|
|
|
|
|
|
|
test_cx_ph_LDADD = \
|
2008-08-27 15:39:05 +02:00
|
|
|
libcmaths.la \
|
|
|
|
|
../../misc/libmisc.la \
|
2010-09-17 18:11:25 +02:00
|
|
|
$(TCL_LIB_SPEC)
|
2000-04-27 22:03:57 +02:00
|
|
|
|
2000-05-30 21:36:33 +02:00
|
|
|
test_cx_mag_SOURCES = \
|
|
|
|
|
test_cx_mag.c
|
|
|
|
|
|
|
|
|
|
test_cx_mag_LDADD = \
|
2008-08-27 15:39:05 +02:00
|
|
|
libcmaths.la \
|
|
|
|
|
../../misc/libmisc.la \
|
2010-09-17 18:11:25 +02:00
|
|
|
$(TCL_LIB_SPEC)
|
2000-05-30 21:36:33 +02:00
|
|
|
|
|
|
|
|
test_cx_j_SOURCES = \
|
|
|
|
|
test_cx_j.c
|
|
|
|
|
|
|
|
|
|
test_cx_j_LDADD = \
|
2008-08-27 15:39:05 +02:00
|
|
|
libcmaths.la \
|
|
|
|
|
../../misc/libmisc.la \
|
2010-09-17 18:11:25 +02:00
|
|
|
$(TCL_LIB_SPEC)
|
2000-05-30 21:36:33 +02:00
|
|
|
|
2000-06-03 14:08:35 +02:00
|
|
|
TESTS = test_cx_mag test_cx_j test_cx_ph
|
2000-04-27 22:03:57 +02:00
|
|
|
|
2008-12-31 15:42:49 +01:00
|
|
|
endif !TCLWIN
|
2005-05-18 14:47:24 +02:00
|
|
|
endif !WINDOWS
|
|
|
|
|
|
2002-01-03 23:44:21 +01:00
|
|
|
|
2008-08-24 19:12:50 +02:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/maths/poly
|
2000-04-27 22:03:57 +02:00
|
|
|
|
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|