mirror of https://github.com/Gnucash/gnucash
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.
39 lines
724 B
39 lines
724 B
SUBDIRS = . test
|
|
|
|
pkglib_LTLIBRARIES = libgncmod-calculation.la
|
|
|
|
libgncmod_calculation_la_LDFLAGS = -avoid-version
|
|
|
|
libgncmod_calculation_la_LIBADD = \
|
|
${top_builddir}/src/libqof/qof/libgnc-qof.la \
|
|
${GLIB_LIBS} \
|
|
${GUILE_LIBS}
|
|
|
|
libgncmod_calculation_la_SOURCES = \
|
|
expression_parser.c \
|
|
fin.c \
|
|
gncmod-calculation.c
|
|
|
|
noinst_HEADERS = \
|
|
finvar.h \
|
|
finproto.h \
|
|
fin_spl_protos.h \
|
|
fin_static_proto.h
|
|
|
|
EXTRA_DIST = \
|
|
README \
|
|
amort_opt.c \
|
|
amort_prt.c \
|
|
fin-interactive.c \
|
|
fin-main.c \
|
|
numeric_ops.c \
|
|
numeric_ops.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-I${top_srcdir}/lib/libc \
|
|
-I${top_srcdir}/src \
|
|
-I${top_srcdir}/src/gnc-module \
|
|
-I${top_srcdir}/src/libqof/qof \
|
|
${GUILE_INCS} \
|
|
${GLIB_CFLAGS}
|