aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-06-28 03:09:27 +0000
committerRichard M. Stallman1997-06-28 03:09:27 +0000
commit65ef095e591cadc2189dfa8bb32796d86e44c0f2 (patch)
tree002dec85f48a43b71117f9be966bfb1e98b752d9
parent4fd2a3af4c501cadb425f4db596483a730774835 (diff)
downloademacs-65ef095e591cadc2189dfa8bb32796d86e44c0f2.tar.gz
emacs-65ef095e591cadc2189dfa8bb32796d86e44c0f2.zip
(lisptagsfiles): Look at subdirs only if name
starts with a letter. (dontcompilefiles): Don't compile latin-5.el. (updates): Reject subdirs whose names start with =. (custom-deps, finder-data, autoloads, update-subdirs): Likewise.
-rw-r--r--lisp/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/Makefile b/lisp/Makefile
index 727b8172ea4..587d07bc9d7 100644
--- a/lisp/Makefile
+++ b/lisp/Makefile
@@ -3,11 +3,11 @@
3# 3#
4EMACS = emacs 4EMACS = emacs
5SOURCES = *.el COPYING Makefile 5SOURCES = *.el COPYING Makefile
6lisptagsfiles = [a-zA-Z]*.el */[a-zA-Z]*.el 6lisptagsfiles = [a-zA-Z]*.el [a-zA-Z]*/[a-zA-Z]*.el
7 7
8dontcompilefiles: bindings.el blessmail.el bruce.el cus-load.el cus-start.el 8dontcompilefiles: bindings.el blessmail.el bruce.el cus-load.el cus-start.el
9dontcompilefiles: forms-d2.el forms-pass.el 9dontcompilefiles: forms-d2.el forms-pass.el
10dontcompilefiles: latin-1.el latin-2.el latin-3.el latin-4.el 10dontcompilefiles: latin-1.el latin-2.el latin-3.el latin-4.el latin-5.el
11dontcompilefiles: loaddefs.el loadup.el mule-conf.el patcomp.el 11dontcompilefiles: loaddefs.el loadup.el mule-conf.el patcomp.el
12dontcompilefiles: paths.el sc.el subdirs.el term-nasty.el version.el 12dontcompilefiles: paths.el sc.el subdirs.el term-nasty.el version.el
13 13
@@ -25,7 +25,7 @@ custom-deps: doit
25finder-data: doit 25finder-data: doit
26 subdirs=`find . -type d -print`; \ 26 subdirs=`find . -type d -print`; \
27 for file in $$subdirs; do \ 27 for file in $$subdirs; do \
28 case $$file in */Old | */RCS) ;; \ 28 case $$file in */Old | */RCS | */=* ) ;; \
29 *) wins="$$wins $$file" ;; \ 29 *) wins="$$wins $$file" ;; \
30 esac; \ 30 esac; \
31 done; \ 31 done; \
@@ -34,7 +34,7 @@ finder-data: doit
34autoloads: doit 34autoloads: doit
35 subdirs=`find . -type d -print`; \ 35 subdirs=`find . -type d -print`; \
36 for file in $$subdirs; do \ 36 for file in $$subdirs; do \
37 case $$file in */Old | */RCS) ;; \ 37 case $$file in */Old | */RCS | */=* ) ;; \
38 *) wins="$$wins $$file" ;; \ 38 *) wins="$$wins $$file" ;; \
39 esac; \ 39 esac; \
40 done; \ 40 done; \
@@ -43,7 +43,7 @@ autoloads: doit
43update-subdirs: doit 43update-subdirs: doit
44 subdirs=`find . -type d -print`; \ 44 subdirs=`find . -type d -print`; \
45 for file in $$subdirs; do \ 45 for file in $$subdirs; do \
46 case $$file in */Old | */RCS) ;; \ 46 case $$file in */Old | */RCS | */=* ) ;; \
47 *) wins="$$wins $$file" ;; \ 47 *) wins="$$wins $$file" ;; \
48 esac; \ 48 esac; \
49 done; \ 49 done; \
@@ -54,7 +54,7 @@ update-subdirs: doit
54updates: doit 54updates: doit
55 subdirs=`find . -type d -print`; \ 55 subdirs=`find . -type d -print`; \
56 for file in $$subdirs; do \ 56 for file in $$subdirs; do \
57 case $$file in */Old | */RCS) ;; \ 57 case $$file in */Old | */RCS | */=* ) ;; \
58 *) wins="$$wins $$file" ;; \ 58 *) wins="$$wins $$file" ;; \
59 esac; \ 59 esac; \
60 done; \ 60 done; \