File: Makefile

package info (click to toggle)
gap-transgrp 3.6.5-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 58,692 kB
  • sloc: makefile: 120; sh: 9
file content (34 lines) | stat: -rw-r--r-- 1,221 bytes parent folder | download | duplicates (2)
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
34
SHELL=/bin/bash
pkgdocdir=/usr/share/gap/pkg/TransGrp/doc
DOCDIR=$(DESTDIR)$(pkgdocdir)
MANUAL=manual
DIRS=.
doc:
	bash ./make_doc
clean:
	rm -f $(DIRS)/*.{html,txt,css,js}
	rm -f $(DIRS)/make_manuals.out
	rm -f $(DIRS)/$(MANUAL).{dvi,aux,bbl,blg,brf,idx,ilg,ind,log,out,pnr,toc,toc.gz}
	rm -f $(DIRS)/manual{,-bw}.{lab,six,six.gz,pdf}
	rm -f manualbib.xml.bib manual.example*
	rm -fr ../htm tthmacros.tex tthout
install: install-pdf install-help install-html
install-pdf:
	test -d $(DOCDIR)/$(DIRS) || install -d $(DOCDIR)/$(DIRS)
	set -e; for man in $(DIRS); do \
	  install -m 0644 $$man/manual.pdf $(DOCDIR)/$$man;\
	done
install-help:
	test -d $(DOCDIR)/$(DIRS) || install -d $(DOCDIR)/$(DIRS)
	set -e; for man in $(DIRS); do \
	  gzip --no-name --best $$man/manual.six; \
	  gzip --no-name --best $$man/$(MANUAL).toc; \
	  install -m 0644 $$man/manual.lab $(DOCDIR)/$$man;\
	  install -m 0644 $$man/manual.six.gz $(DOCDIR)/$$man;\
	  install -m 0644 $$man/$(MANUAL).toc.gz $(DOCDIR)/$$man;\
	  install -m 0644 $$man/*.bib $(DOCDIR)/$$man;\
	  install -m 0644 $$man/*.tex $(DOCDIR)/$$man;\
	done
install-html:
	test -d $(DOCDIR)/../htm || install -d $(DOCDIR)/../htm
	install -m 0644 ../htm/*.htm $(DOCDIR)/../htm/;