21 lines
343 B
Makefile
21 lines
343 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 \
|
|
erfc.c \
|
|
equality.c \
|
|
isnan.c \
|
|
logb.c \
|
|
scalb.c \
|
|
norm.h \
|
|
norm.c
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|