diff options
| author | Eric S. Raymond | 2014-10-25 14:55:59 -0400 |
|---|---|---|
| committer | Eric S. Raymond | 2014-10-25 14:55:59 -0400 |
| commit | 88a297f3a221bcd4828cabfd9e345ef8b5f77310 (patch) | |
| tree | 6b42740ea6ce07fcb7eff81a2a3c5c8af5f0616f | |
| parent | 2a7753ce3efd6a126cb4db23763e24fa79e98253 (diff) | |
| download | emacs-88a297f3a221bcd4828cabfd9e345ef8b5f77310.tar.gz emacs-88a297f3a221bcd4828cabfd9e345ef8b5f77310.zip | |
Neutralize names specific to a repository type.
| -rw-r--r-- | lisp/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 6f87c6da312..b8b03a47362 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -196,18 +196,18 @@ update-subdirs: | |||
| 196 | $(srcdir)/../build-aux/update-subdirs $$file; \ | 196 | $(srcdir)/../build-aux/update-subdirs $$file; \ |
| 197 | done; | 197 | done; |
| 198 | 198 | ||
| 199 | .PHONY: updates bzr-update update-authors | 199 | .PHONY: updates repo-update update-authors |
| 200 | 200 | ||
| 201 | # Some modes of make-dist use this. | 201 | # Some modes of make-dist use this. |
| 202 | updates: update-subdirs autoloads finder-data custom-deps | 202 | updates: update-subdirs autoloads finder-data custom-deps |
| 203 | 203 | ||
| 204 | # This is useful after "bzr up"; but it doesn't do anything that a | 204 | # This is useful after a repostiory fetch; but it doesn't do anything that a |
| 205 | # plain "make" at top-level doesn't. | 205 | # plain "make" at top-level doesn't. |
| 206 | # The only difference between this and this directory's "all" rule | 206 | # The only difference between this and this directory's "all" rule |
| 207 | # is that this runs "autoloads" as well (because it uses "compile" | 207 | # is that this runs "autoloads" as well (because it uses "compile" |
| 208 | # rather than "compile-main"). In a bootstrap, $(lisp) in src/Makefile | 208 | # rather than "compile-main"). In a bootstrap, $(lisp) in src/Makefile |
| 209 | # triggers this directory's autoloads rule. | 209 | # triggers this directory's autoloads rule. |
| 210 | bzr-update: compile finder-data custom-deps | 210 | repo-update: compile finder-data custom-deps |
| 211 | 211 | ||
| 212 | # Update the AUTHORS file. | 212 | # Update the AUTHORS file. |
| 213 | 213 | ||