blob: af5ba0c8b31cfea49611cc9d11830b2715b7414a (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
ASYFILES = $(notdir $(wildcard ../*.asy)) latexusage.asy
SOURCE = ../asymptote.texi ../version.texi ../options
ASY = ../asy -dir ../base -config "" -render=0
docdir = $(DESTDIR)@docdir@
infodir = $(DESTDIR)@infodir@
datarootdir = @datarootdir@
INSTALL = @INSTALL@
all: html info
%.png: ../%.asy
cd .. && $(ASY) -f png -o png/ $(notdir $<)
latexusage.png: ../latexusage.eps
convert -alpha Off -density 144x144 +antialias -geometry 50%x \
../latexusage.eps latexusage.png
index.html: $(SOURCE) $(ASYFILES:.asy=.png)
makeinfo --html ../asymptote -o .
asymptote.info: $(SOURCE)
makeinfo --no-warn --no-split ../asymptote
info: $(SOURCE) $(ASYFILES:.asy=.png)
makeinfo --no-split ../asymptote
html: index.html
clean: FORCE
-rm -f *.png *.html asymptote.info* texput.aux texput.log
distclean: FORCE clean
-rm -f Makefile
install: asymptote.info
${INSTALL} -d -m 755 $(infodir)/asymptote
${INSTALL} -p -m 644 asymptote.info $(infodir)/asymptote
-if test -z "$(DESTDIR)"; then \
install-info --infodir=$(infodir) asymptote.info; \
fi
install-all: all install
${INSTALL} -p -m 644 *.png $(infodir)/asymptote
uninstall:
-install-info --remove --infodir=$(infodir) asymptote.info
-cd $(infodir)/asymptote && rm -f asymptote.info *.png
-rmdir $(infodir)/asymptote
FORCE:
|