28 lines
904 B
Text
28 lines
904 B
Text
$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
|
|
|
|
#
|