24 lines
380 B
Makefile
24 lines
380 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libderiv.a
|
|
|
|
libderiv_a_SOURCES = \
|
|
atander.c \
|
|
cosderiv.c \
|
|
cubeder.c \
|
|
divderiv.c \
|
|
equalder.c \
|
|
expderiv.c \
|
|
invderiv.c \
|
|
multder.c \
|
|
plusder.c \
|
|
powderiv.c \
|
|
sqrtder.c \
|
|
tanderiv.c \
|
|
timesder.c
|
|
|
|
|
|
|
|
INCLUDES = -I$(top_srcdir)/src/include
|
|
MAINTAINERCLEANFILES = Makefile.in
|