blob: 95eb703661c60e09d78c307d35c92ab30c8d0322 (
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.4 2002/02/18 15:14:28 seb Exp $
--- Makefile.orig Sun Oct 28 02:35:41 2001
+++ Makefile
@@ -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
vm-autoload.elc: $(SOURCES)
@echo scanning sources to build autoload definitions...
|