55 lines
901 B
Makefile
55 lines
901 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LTLIBRARIES = libcmaths.la
|
|
|
|
libcmaths_la_SOURCES = \
|
|
cmath.h \
|
|
cmath1.c \
|
|
cmath1.h \
|
|
cmath2.c \
|
|
cmath2.h \
|
|
cmath3.c \
|
|
cmath3.h \
|
|
cmath4.c \
|
|
cmath4.h
|
|
|
|
## Test programs fail to build on Windows
|
|
if !WINDOWS
|
|
if !TCLWIN
|
|
|
|
noinst_PROGRAMS = test_cx_mag test_cx_j test_cx_ph
|
|
|
|
test_cx_ph_SOURCES = \
|
|
test_cx_ph.c
|
|
|
|
test_cx_ph_LDADD = \
|
|
libcmaths.la \
|
|
../../misc/libmisc.la \
|
|
$(TCL_LIB_SPEC)
|
|
|
|
test_cx_mag_SOURCES = \
|
|
test_cx_mag.c
|
|
|
|
test_cx_mag_LDADD = \
|
|
libcmaths.la \
|
|
../../misc/libmisc.la \
|
|
$(TCL_LIB_SPEC)
|
|
|
|
test_cx_j_SOURCES = \
|
|
test_cx_j.c
|
|
|
|
test_cx_j_LDADD = \
|
|
libcmaths.la \
|
|
../../misc/libmisc.la \
|
|
$(TCL_LIB_SPEC)
|
|
|
|
TESTS = test_cx_mag test_cx_j test_cx_ph
|
|
|
|
endif !TCLWIN
|
|
endif !WINDOWS
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/maths/poly
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|