Note that the (internal) file names of "whipper/test/cache/result/fe105a11.pickle" did not get updated, since that breaks the tests for some reason.
31 lines
813 B
Makefile
31 lines
813 B
Makefile
EXTRA_DIST = whipper.rss2 whipper.ics $(man_MANS)
|
|
DISTCLEANFILES = $(man_MANS)
|
|
|
|
all-local: feeds reference
|
|
|
|
if HAVE_EPYDOC
|
|
reference: $(top_srcdir)/whipper/*.py feeds
|
|
epydoc -o reference $(top_srcdir)/whipper
|
|
else
|
|
reference:
|
|
@true
|
|
endif
|
|
|
|
# generate feeds
|
|
feeds: whipper.rss2 whipper.ics
|
|
|
|
# don't fail fatally if user does not have RDF
|
|
whipper.rss2: $(top_srcdir)/whipper.doap
|
|
-moap doap -f $(top_srcdir)/whipper.doap rss > whipper.rss2
|
|
|
|
whipper.ics: $(top_srcdir)/whipper.doap
|
|
-moap doap -f $(top_srcdir)/whipper.doap ical > whipper.ics
|
|
|
|
man_MANS = rip.1
|
|
|
|
rip.1: $(top_srcdir)/whipper/extern/python-command/scripts/help2man $(top_srcdir)/whipper
|
|
PYTHONPATH=$(top_srcdir) $(PYTHON) $(top_srcdir)/whipper/extern/python-command/scripts/help2man whipper.rip.main.Rip rip > rip.1
|
|
|
|
clean-local:
|
|
@rm -rf reference
|