blob: 1244b11c1255714a5c75ab8b0349390b4a09ee96 (
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
|
$NetBSD: patch-aa,v 1.2 2003/01/11 12:13:16 wiz Exp $
--- makefile.orig Mon Dec 30 14:28:06 2002
+++ makefile
@@ -9,10 +9,10 @@
EMACS = emacs
# Default locations of the packages required to compile the JDE.
-EIEIO = ../../eieio
-ELIB = ../../elib
-SEMANTIC = ../../semantic
-SPEEDBAR = ../../speedbar
+EIEIO = ${EMACS_LISPPREFIX}/eieio
+ELIB = ${EMACS_LISPPREFIX}/elib
+SEMANTIC = ${EMACS_LISPPREFIX}/semantic
+SPEEDBAR = ${EMACS_LISPPREFIX}/speedbar
all:
test -d $(SEMANTIC) -a -d $(SPEEDBAR) -a -d $(ELIB) -a -d $(EIEIO)
@@ -25,7 +25,7 @@
echo "(setq debug-on-error t)" >> jde-compile-script-init
echo "(require 'jde-compat)" >> jde-compile-script-init
echo "(require 'jde)" >>jde-compile-script-init
- $(EMACS) -batch -l jde-compile-script-init -f batch-byte-compile *.el
+ -$(EMACS) -batch -l jde-compile-script-init -f batch-byte-compile *.el
rm -f jde-compile-script-init
#
|