File: Makefile.am

package info (click to toggle)
gap-float 0.6.3%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 612 kB
  • ctags: 593
  • sloc: ansic: 2,568; cpp: 2,013; xml: 177; makefile: 119; sh: 100
file content (33 lines) | stat: -rw-r--r-- 1,054 bytes parent folder | download
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