blob: 242dc97b0328f63a8bd5ab467fe0cbc8253633b8 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
|
--- docs/Makefile.in.orig 2012-11-02 13:21:14.000000000 -0700
+++ docs/Makefile.in 2012-11-02 13:21:48.000000000 -0700
@@ -395,15 +395,15 @@
# Thanks to Bruce Ravel for doc2texi.el!
gnuplot.texi $(srcdir)/gnuplot-eldoc.el $(srcdir)/gnuplot-eldoc.elc: $(srcdir)/doc2texi.el $(srcdir)/gnuplot.doc
@echo "Creating texinfo and eldoc strings file"
- @if test "$(EMACS)" != no; then \
- @test "$(top_srcdir)" = "$(top_builddir)" || echo "COPYING GNUPLOT.DOC" ; \
- @test "$(top_srcdir)" = "$(top_builddir)" || cp $(srcdir)/gnuplot.doc . ; \
- $(EMACS) -batch -l $(srcdir)/doc2texi.el -f d2t-doc-to-texi ; \
- echo "Compiling gnuplot-eldoc.el" ; \
- $(EMACS) -batch --eval='(byte-compile-file "gnuplot-eldoc.el")' ; \
- else \
- echo "No emacs found - cannot create texinfo file" ; \
- fi
+# @if test "$(EMACS)" != no; then \
+# @test "$(top_srcdir)" = "$(top_builddir)" || echo "COPYING GNUPLOT.DOC" ; \
+# @test "$(top_srcdir)" = "$(top_builddir)" || cp $(srcdir)/gnuplot.doc . ; \
+# $(EMACS) -batch -l $(srcdir)/doc2texi.el -f d2t-doc-to-texi ; \
+# echo "Compiling gnuplot-eldoc.el" ; \
+# $(EMACS) -batch --eval='(byte-compile-file "gnuplot-eldoc.el")' ; \
+# else \
+# echo "No emacs found - cannot create texinfo file" ; \
+# fi
# this is how to make OS/2 ipfc documentation
@@ -461,18 +461,18 @@
$(INSTALL_DATA) gnuplot.pdf $(DESTDIR)$(GIHDIR)/gnuplot.pdf; \
fi
-install-info: gnuplot.info gnuplot-eldoc.el gnuplot-eldoc.elc
- @if test "$(EMACS)" != no; then \
- $(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir) $(DESTDIR)$(lispdir); \
- $(INSTALL_DATA) gnuplot.info $(DESTDIR)$(infodir)/gnuplot.info; \
- $(INSTALL_DATA) gnuplot-eldoc.el $(DESTDIR)$(lispdir)/gnuplot-eldoc.el; \
- $(INSTALL_DATA) gnuplot-eldoc.elc $(DESTDIR)$(lispdir)/gnuplot-eldoc.elc; \
- else : ; fi
- @if (test "$(EMACS)" != no && install-info --version && \
- install-info --version | fgrep -i -v debian) >/dev/null 2>&1; then \
- echo "install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gnuplot.info";\
- install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gnuplot.info || :;\
- else : ; fi
+install-info:
+# @if test "$(EMACS)" != no; then \
+# $(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir) $(DESTDIR)$(lispdir); \
+# $(INSTALL_DATA) gnuplot.info $(DESTDIR)$(infodir)/gnuplot.info; \
+# $(INSTALL_DATA) gnuplot-eldoc.el $(DESTDIR)$(lispdir)/gnuplot-eldoc.el; \
+# $(INSTALL_DATA) gnuplot-eldoc.elc $(DESTDIR)$(lispdir)/gnuplot-eldoc.elc; \
+# else : ; fi
+# @if (test "$(EMACS)" != no && install-info --version && \
+# install-info --version | fgrep -i -v debian) >/dev/null 2>&1; then \
+# echo "install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gnuplot.info";\
+# install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gnuplot.info || :;\
+# else : ; fi
installcheck:
|