diff options
| author | Richard M. Stallman | 1997-06-28 03:09:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-06-28 03:09:27 +0000 |
| commit | 65ef095e591cadc2189dfa8bb32796d86e44c0f2 (patch) | |
| tree | 002dec85f48a43b71117f9be966bfb1e98b752d9 | |
| parent | 4fd2a3af4c501cadb425f4db596483a730774835 (diff) | |
| download | emacs-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/Makefile | 12 |
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 | # |
| 4 | EMACS = emacs | 4 | EMACS = emacs |
| 5 | SOURCES = *.el COPYING Makefile | 5 | SOURCES = *.el COPYING Makefile |
| 6 | lisptagsfiles = [a-zA-Z]*.el */[a-zA-Z]*.el | 6 | lisptagsfiles = [a-zA-Z]*.el [a-zA-Z]*/[a-zA-Z]*.el |
| 7 | 7 | ||
| 8 | dontcompilefiles: bindings.el blessmail.el bruce.el cus-load.el cus-start.el | 8 | dontcompilefiles: bindings.el blessmail.el bruce.el cus-load.el cus-start.el |
| 9 | dontcompilefiles: forms-d2.el forms-pass.el | 9 | dontcompilefiles: forms-d2.el forms-pass.el |
| 10 | dontcompilefiles: latin-1.el latin-2.el latin-3.el latin-4.el | 10 | dontcompilefiles: latin-1.el latin-2.el latin-3.el latin-4.el latin-5.el |
| 11 | dontcompilefiles: loaddefs.el loadup.el mule-conf.el patcomp.el | 11 | dontcompilefiles: loaddefs.el loadup.el mule-conf.el patcomp.el |
| 12 | dontcompilefiles: paths.el sc.el subdirs.el term-nasty.el version.el | 12 | dontcompilefiles: paths.el sc.el subdirs.el term-nasty.el version.el |
| 13 | 13 | ||
| @@ -25,7 +25,7 @@ custom-deps: doit | |||
| 25 | finder-data: doit | 25 | finder-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 | |||
| 34 | autoloads: doit | 34 | autoloads: 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 | |||
| 43 | update-subdirs: doit | 43 | update-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 | |||
| 54 | updates: doit | 54 | updates: 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; \ |