blob: 61e33ab09daf96179c20c615e82eba59fea468f1 (
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
|
$NetBSD: patch-ab,v 1.3 2002/02/18 15:14:38 seb Exp $
--- doc/Makefile.orig Wed Apr 11 13:54:04 2001
+++ doc/Makefile
@@ -39,23 +39,23 @@
dvips auc-tex.dvi -o auc-tex.ps
auctex: auc-tex.texi install.texi intro.texi changes.texi
- -makeinfo auc-tex.texi
+ -$(MAKEINFO) auc-tex.texi
@echo "**********************************************************"
@echo "** If this gave trouble, maybe you need to install"
@echo "** a newer version of texinfo?"
@echo "**********************************************************"
INSTALLATION: install.texi
- -makeinfo --no-headers install.texi --output INSTALLATION
+ -$(MAKEINFO) --no-headers install.texi --output INSTALLATION
README: intro.texi
- -makeinfo --no-headers intro.texi --output README
+ -$(MAKEINFO) --no-headers intro.texi --output README
CHANGES: changes.texi
- -makeinfo --no-headers changes.texi --output CHANGES
+ -$(MAKEINFO) --no-headers changes.texi --output CHANGES
HISTORY: history.texi
- -makeinfo --no-headers history.texi --output HISTORY
+ -$(MAKEINFO) --no-headers history.texi --output HISTORY
install: auctex
cp auctex auctex-* $(infodir)
|