aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2007-12-14 16:38:09 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2007-12-14 16:38:09 +0000
commit86e02355636633dfe747fbdecb208505a02af910 (patch)
treeab3cc259b90964b34d3e2390183e9935f7eaca82 /Makefile
parentb5fce5eba655e0560d71116221e52979dee76fb8 (diff)
Ignore errors in bytecomp
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ffdcd479..f2f6beda 100644
--- a/Makefile
+++ b/Makefile
@@ -82,7 +82,7 @@ compile: .byte-compile
@echo "****************************************************************"
rm -f $(ELC)
# $(BYTECOMP) $(EL)
- -make elc
+ make elc
@echo " Byte compiling X-Symbol..."
(cd x-symbol/lisp; rm -f *.elc; $(MAKE) EMACS="$(EMACS) -q -no-site-file")
echo $(EMACS) > $(@)
@@ -96,7 +96,7 @@ compile: .byte-compile
## to add proper requires in source files.
##
.el.elc:
- $(BYTECOMP) $*.el
+ -$(BYTECOMP) $*.el
elc: $(ELC)