mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6749 57a11ea4-9604-0410-9ed3-97b8803252fd
42 lines
878 B
Makefile
42 lines
878 B
Makefile
SUBDIRS = . test
|
|
|
|
pkglib_LTLIBRARIES = libgncmod-standard-reports.la
|
|
|
|
libgncmod_standard_reports_la_SOURCES = \
|
|
gncmod-standard-reports.c
|
|
|
|
libgncmod_standard_reports_la_LDFLAGS = -module
|
|
|
|
AM_CFLAGS = -I${top_srcdir}/src/gnc-module ${GUILE_INCS} ${GLIB_CFLAGS}
|
|
|
|
.scm-links:
|
|
rm -f gnucash report
|
|
ln -sf . gnucash
|
|
ln -sf ${srcdir} report
|
|
touch .scm-links
|
|
|
|
noinst_DATA = .scm-links
|
|
|
|
gncscmmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash/report/
|
|
gncscmmod_DATA = \
|
|
account-piecharts.scm \
|
|
account-summary.scm \
|
|
aging.scm \
|
|
average-balance.scm \
|
|
balance-sheet.scm \
|
|
category-barchart.scm \
|
|
invoice.scm \
|
|
net-barchart.scm \
|
|
payables.scm \
|
|
pnl.scm \
|
|
portfolio.scm \
|
|
price-scatter.scm \
|
|
receivables.scm \
|
|
register.scm \
|
|
standard-reports.scm \
|
|
transaction.scm
|
|
|
|
EXTRA_DIST = ${gncscmmod_DATA}
|
|
|
|
CLEANFILES = gnucash report .scm-links
|