26 lines
420 B
Makefile
26 lines
420 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LTLIBRARIES = libmathmisc.la
|
|
|
|
libmathmisc_la_SOURCES = \
|
|
accuracy.c \
|
|
accuracy.h \
|
|
bernoull.h \
|
|
bernoull.c \
|
|
equality.c \
|
|
isinf.c \
|
|
isnan.c \
|
|
logb.c \
|
|
scalb.c \
|
|
norm.h \
|
|
norm.c \
|
|
randnumb.c
|
|
|
|
|
|
EXTRA_DIST = test_accuracy.c
|
|
|
|
AM_CPPFLAGS = @AM_CPPFLAGS@ -I$(top_srcdir)/src/include
|
|
AM_CFLAGS = $(STATIC)
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|