You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
407 B
25 lines
407 B
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LTLIBRARIES = libmathmisc.la
|
|
|
|
libmathmisc_la_SOURCES = \
|
|
accuracy.c \
|
|
accuracy.h \
|
|
bernoull.h \
|
|
bernoull.c \
|
|
erfc.c \
|
|
equality.c \
|
|
isinf.c \
|
|
isnan.c \
|
|
logb.c \
|
|
scalb.c \
|
|
norm.h \
|
|
norm.c \
|
|
randnumb.c
|
|
|
|
|
|
EXTRA_DIST = test_accuracy.c test_erfc.c
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|