diff options
| author | Juanma Barranquero | 2010-09-13 18:33:56 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-09-13 18:33:56 +0200 |
| commit | 5d921df2ed9d98a852c369fc31e0a3b8f2ea34d7 (patch) | |
| tree | d0d54b9fa67806cf6cd4d4a031004687830488b2 | |
| parent | 459bba37ea4e261ee09dc17673403bbfa52a9548 (diff) | |
| download | emacs-5d921df2ed9d98a852c369fc31e0a3b8f2ea34d7.tar.gz emacs-5d921df2ed9d98a852c369fc31e0a3b8f2ea34d7.zip | |
Port tramp-related Makefile changes of 2010-09-08T14:42:54Z!michael.albinus@gmx.de, 2010-09-13T15:17:01Z!michael.albinus@gmx.de to Windows.
* makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el.
(TRAMP_SRC): New macro.
($(lisp)/net/tramp-loaddefs.el): New target.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/makefile.w32-in | 21 |
2 files changed, 27 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c216119fd0f..0d7e47e9ca0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2010-09-13 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | Port tramp-related Makefile changes of 2010-09-08T14:42:54Z!michael.albinus@gmx.de, 2010-09-13T15:17:01Z!michael.albinus@gmx.de to Windows. | ||
| 4 | * makefile.w32-in (LOADDEFS): Add $(lisp)/net/tramp-loaddefs.el. | ||
| 5 | (TRAMP_SRC): New macro. | ||
| 6 | ($(lisp)/net/tramp-loaddefs.el): New target. | ||
| 7 | |||
| 1 | 2010-09-13 Michael Albinus <michael.albinus@gmx.de> | 8 | 2010-09-13 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 9 | ||
| 3 | Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el. | 10 | Major code cleanup. Split tramp.el into tramp.el and tramp-sh.el. |
diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index df997b76585..43328a9e46a 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in | |||
| @@ -55,7 +55,7 @@ ETAGS = "../lib-src/$(BLD)/etags" | |||
| 55 | # Automatically generated autoload files, apart from lisp/loaddefs.el. | 55 | # Automatically generated autoload files, apart from lisp/loaddefs.el. |
| 56 | LOADDEFS = $(lisp)/calendar/cal-loaddefs.el \ | 56 | LOADDEFS = $(lisp)/calendar/cal-loaddefs.el \ |
| 57 | $(lisp)/calendar/diary-loaddefs.el $(lisp)/calendar/hol-loaddefs.el \ | 57 | $(lisp)/calendar/diary-loaddefs.el $(lisp)/calendar/hol-loaddefs.el \ |
| 58 | $(lisp)/mh-e/mh-loaddefs.el | 58 | $(lisp)/mh-e/mh-loaddefs.el $(lisp)/net/tramp-loaddefs.el |
| 59 | 59 | ||
| 60 | AUTOGENEL = $(lisp)/loaddefs.el $(LOADDEFS) $(lisp)/cus-load.el \ | 60 | AUTOGENEL = $(lisp)/loaddefs.el $(LOADDEFS) $(lisp)/cus-load.el \ |
| 61 | $(lisp)/finder-inf.el $(lisp)/subdirs.el $(lisp)/eshell/esh-groups.el \ | 61 | $(lisp)/finder-inf.el $(lisp)/subdirs.el $(lisp)/eshell/esh-groups.el \ |
| @@ -403,6 +403,25 @@ $(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC) | |||
| 403 | -f w32-batch-update-autoloads \ | 403 | -f w32-batch-update-autoloads \ |
| 404 | $(ARGQUOTE)$(lisp)/mh-e/mh-loaddefs.el$(ARGQUOTE) $(MAKE) ./mh-e | 404 | $(ARGQUOTE)$(lisp)/mh-e/mh-loaddefs.el$(ARGQUOTE) $(MAKE) ./mh-e |
| 405 | 405 | ||
| 406 | # Update TRAMP internal autoloads. Maybe we could move tramp*.el into | ||
| 407 | # its own subdirectory. OTOH, it does not hurt to keep them in | ||
| 408 | # lisp/net. | ||
| 409 | TRAMP_SRC = $(lisp)/net/tramp.el $(lisp)/net/tramp-cache.el \ | ||
| 410 | $(lisp)/net/tramp-cmds.el $(lisp)/net/tramp-compat.el \ | ||
| 411 | $(lisp)/net/tramp-ftp.el $(lisp)/net/tramp-gvfs.el \ | ||
| 412 | $(lisp)/net/tramp-gw.el $(lisp)/net/tramp-imap.el \ | ||
| 413 | $(lisp)/net/tramp-sh.el $(lisp)/net/tramp-smb.el \ | ||
| 414 | $(lisp)/net/tramp-uu.el $(lisp)/net/trampver.el | ||
| 415 | |||
| 416 | $(lisp)/net/tramp-loaddefs.el: $(TRAMP_SRC) | ||
| 417 | "$(EMACS)" $(EMACSOPT) \ | ||
| 418 | -l autoload \ | ||
| 419 | --eval $(ARGQUOTE)(setq generate-autoload-cookie $(DQUOTE);;;###tramp-autoload$(DQUOTE))$(ARGQUOTE) \ | ||
| 420 | --eval $(ARGQUOTE)(setq find-file-suppress-same-file-warnings t)$(ARGQUOTE) \ | ||
| 421 | --eval $(ARGQUOTE)(setq make-backup-files nil)$(ARGQUOTE) \ | ||
| 422 | -f w32-batch-update-autoloads \ | ||
| 423 | $(ARGQUOTE)$(lisp)/net/tramp-loaddefs.el$(ARGQUOTE) $(MAKE) ./net | ||
| 424 | |||
| 406 | # Prepare a bootstrap in the lisp subdirectory. | 425 | # Prepare a bootstrap in the lisp subdirectory. |
| 407 | # | 426 | # |
| 408 | # Build loaddefs.el to make sure it's up-to-date. If it's not, that | 427 | # Build loaddefs.el to make sure it's up-to-date. If it's not, that |