blob: 3c25fb303dc1897b1d968d1ecb70775ebe297061 (
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
|
$NetBSD: patch-aa,v 1.5 2002/05/04 02:32:07 jtb Exp $
--- Makefile.orig Sat May 4 03:21:17 2002
+++ Makefile Sat May 4 03:22:54 2002
@@ -2,24 +2,24 @@
# prior to 19.14 for XEmacs are unsupported.
# what emacs is called on your system
-EMACS = emacs
+#EMACS = emacs
# top of the installation
-prefix = /usr/local
+prefix = ${PREFIX}
# where the Info file should go
-INFODIR = ${prefix}/lib/emacs/info
+#INFODIR = ${prefix}/lib/emacs/info
# where the vm.elc, tapestry.elc, etc. files should go
-LISPDIR = ${prefix}/lib/emacs/site-lisp
+#LISPDIR = ${prefix}/lib/emacs/site-lisp
# where the toolbar pixmaps should go.
# vm-toolbar-pixmap-directory must point to the same place.
# vm-image-directory must point to the same place.
-PIXMAPDIR = ${prefix}/lib/emacs/etc/vm
+#PIXMAPDIR = ${prefix}/lib/emacs/etc/vm
# where the binaries should be go.
-BINDIR = ${prefix}/bin
+#BINDIR = ${prefix}/bin
############## no user servicable parts beyond this point ###################
@@ -134,7 +134,7 @@
vm.info: vm.texinfo
@echo "making vm.info..."
- @$(EMACS) $(BATCHFLAGS) -insert vm.texinfo -l texinfmt -f texinfo-format-buffer -f save-buffer
+ $(MAKEINFO) vm.texinfo
# We use tr -d because Emacs under Cygwin apparently outputs CRLF
# under Windows. We remove the CRs.
|