Skip to content

Commit

Permalink
* MU-MK (config-mu-package): Add auto-autoloads and custom-load
Browse files Browse the repository at this point in the history
only to `mu-modules-to-compile'.
(compile-mu-package): Don't compile `mu-modules-not-to-compile'.
  • Loading branch information
ueno committed Feb 25, 2002
1 parent a1f6b38 commit 8413e68
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions MU-MK
Expand Up @@ -42,8 +42,10 @@ LISPDIR=%s\n" PREFIX LISPDIR))))
(setq command-line-args-left (cdr command-line-args-left))
(load-file "MU-CFG")
(load-file "MU-ELS")
(setq mu-modules (append mu-modules
'(auto-autoloads custom-load)))
(setq mu-modules-to-compile (append mu-modules-to-compile
'(auto-autoloads custom-load)))
(setq mu-modules (append mu-modules-to-compile
mu-modules-not-to-compile))
(princ (format "PACKAGEDIR=%s\n" PACKAGEDIR))))

(defun compile-mu-package ()
Expand All @@ -56,7 +58,7 @@ LISPDIR=%s\n" PREFIX LISPDIR))))
(add-to-list 'command-line-args-left ".")
(Custom-make-dependencies)

(compile-elisp-modules mu-modules "."))
(compile-elisp-modules mu-modules-to-compile "."))

(defun install-mu-package ()
(config-mu-package)
Expand Down

0 comments on commit 8413e68

Please sign in to comment.