blob: e2e0c25616e11f5dc1404f7864190d61d3ff39b0 (
plain) (
blame)
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
|
--- Makefile.in Wed Sep 6 06:52:39 2006
+++ Makefile.in.port Wed Sep 6 18:38:24 2006
@@ -21,8 +21,8 @@
CLEAN = camp.output asy.list asy.sorted
NAME = asy
EXTRABIN = x$(NAME)
-EXTRA = asy-mode.el,asy-keywords.el,asy-init.el,asy.vim,asymptote.py
-LATEXFILES = asymptote.sty,asycolors.sty
+EXTRA = base/asy-mode.el base/asy-keywords.el base/asy-init.el base/asy.vim base/asymptote.py
+LATEXFILES = doc/asymptote.sty doc/asycolors.sty
DEFS = @DEFS@ @OPTIONS@
CFLAGS = @CPPFLAGS@ @CFLAGS@
@@ -43,7 +43,7 @@
datadir = $(DESTDIR)@datadir@
asydir = $(datadir)/asymptote
docdir = $(DESTDIR)@docdir@
-exampledir = $(docdir)/examples
+exampledir = $(datadir)/examples/asymptote
animationsdir = $(exampledir)/animations
latexdir = $(DESTDIR)@latexdir@
INSTALL = @INSTALL@
@@ -68,7 +68,7 @@
rm -f $(GC).tar
cd $(GC); \
./configure --disable-threads --disable-shared --enable-cplusplus; \
- $(MAKE) check
+ $(MAKE)
html: asy
cd doc; $(MAKE) doc
@@ -111,11 +111,11 @@
${INSTALL} -d $(bindir) $(asydir) $(exampledir) $(animationsdir)
-${INSTALL} -d $(latexdir)
${INSTALL} -p -m 755 $(NAME) $(EXTRABIN) $(bindir)
- ${INSTALL} -p -m 644 base/*.asy base/{$(EXTRA)} $(asydir)
+ ${INSTALL} -p -m 644 base/*.asy $(EXTRA) $(asydir)
${INSTALL} -p -m 644 examples/*.asy examples/piicon.eps \
doc/*.asy doc/*.csv doc/*.dat doc/latexusage.tex $(exampledir)
${INSTALL} -p -m 644 examples/animations/*.asy $(animationsdir)
- -${INSTALL} -p -m 644 doc/{$(LATEXFILES)} $(latexdir)
+ -${INSTALL} -p -m 644 $(LATEXFILES) $(latexdir)
-if test -z "$(DESTDIR)"; then \
texhash; \
fi
|