1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#############################################################################
##
#W doc/Makefile.am Laurent Bartholdi
##
#Y Copyright (C) 2014, Laurent Bartholdi
##
#############################################################################
docdir = @datadir@/gap/pkg/@PACKAGE@/doc
doc_DATA = \
chapBib.txt chapInd.txt chap0.txt chap1.txt chap2.txt chap3.txt chap4.txt \
chapBib.html chapInd.html chap0.html chap1.html chap2.html chap3.html chap4.html \
chooser.html \
manual.css manual.js \
manual.six \
manual.pdf \
manual.lab
$(doc_DATA): float.xml float.bib
cd $(top_srcdir) && cat makedoc.g | $(CGAP) -A -q -T > /dev/null
clean-local:
rm -f float.tex
rm -f float.aux float.idx float.bbl float.ind float.out float.toc float.pnr float.brf
rm -f float.log float.blg float.ilg
distclean-local:
rm -f lefttoc.css ragged.css times.css toggless.css nocolorprompt.css
rm -f rainbow.js toggless.js
rm -f $(doc_DATA)
#E doc/Makefile.am . . . . . . . . . . . . . . . . . . . . . . . . . ends here
|