1# This makefile is for the lifelines reports
2
3AUTOMAKE_OPTIONS = no-dependencies
4
5# LL_REPORTS is to hold the actual report files
6# (included files go in a different target below)
7LL_REPORTS = novel.ll
8
9# OTHER_REPORTS is to hold included files besides actual report files
10# (eg, supporting files, graphics, included files)
11OTHER_REPORTS = novel.intro novel.README
12
13pkg_REPORTS = $(LL_REPORTS) $(OTHER_REPORTS)
14
15subreportdir = $(pkgdatadir)/novel
16subreport_DATA = $(pkg_REPORTS)
17dist_subreport_DATA = $(pkg_REPORTS)
18