21 lines
447 B
Makefile
21 lines
447 B
Makefile
#
|
|
# Petidomo User Manual
|
|
#
|
|
|
|
htmldir = $(pkgdatadir)/html
|
|
dist_html_DATA = petidomo.html petidomo.css
|
|
|
|
petidomo.html: $(srcdir)/petidomo.tex
|
|
latex $<
|
|
htlatex $<
|
|
|
|
petidomo.css: petidomo.html
|
|
touch $@
|
|
|
|
CLEANFILES = \
|
|
petidomo.4ct petidomo.4tc petidomo.aux petidomo.css petidomo.dvi \
|
|
petidomo.html petidomo.idv petidomo.lg petidomo.log petidomo.tmp \
|
|
petidomo.toc petidomo.xref
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|