(install-just-print-p): Moved to install.el.
authortomo <tomo>
Wed, 20 Dec 2000 05:38:54 +0000 (05:38 +0000)
committertomo <tomo>
Wed, 20 Dec 2000 05:38:54 +0000 (05:38 +0000)
(install-update-package-files): Moved to install.el.

APEL-MK

diff --git a/APEL-MK b/APEL-MK
index 58e5ddb..1fc43ed 100644 (file)
--- a/APEL-MK
+++ b/APEL-MK
 (defvar EMU_DIR nil)                   ; VERSION_SPECIFIC_LISPDIR/EMU_PREFIX
 
 
-;;; Utilities. (XXX: should be moved to install.el ?)
-
-(defun install-just-print-p ()
-  (let ((flag (getenv "MAKEFLAGS"))
-       (case-fold-search nil))
-    (princ (format "%s\n" flag))
-    (if flag
-       (string-match "^\\(\\(--[^ ]+ \\)+-\\|[^ =-]\\)*n" flag))))
-
-(defun install-update-package-files (package dir &optional just-print)
-  (cond
-   (just-print
-    (princ (format "Updating autoloads in directory %s..\n\n" dir))
-
-    (princ (format "Processing %s\n" dir))
-    (princ "Generating custom-load.el...\n\n")
-
-    (princ (format "Compiling %s...\n"
-                  (expand-file-name "auto-autoloads.el" dir)))
-    (princ (format "Wrote %s\n"
-                  (expand-file-name "auto-autoloads.elc" dir)))
-
-    (princ (format "Compiling %s...\n"
-                  (expand-file-name "custom-load.el" dir)))
-    (princ (format "Wrote %s\n"
-                  (expand-file-name "custom-load.elc" dir))))
-   (t
-    (setq autoload-package-name package)
-
-    (let ((command-line-args-left (list dir)))
-      (batch-update-directory))
-
-    (let ((command-line-args-left (list dir)))
-      (Custom-make-dependencies))
-
-    (byte-compile-file (expand-file-name "auto-autoloads.el" dir))
-    (byte-compile-file (expand-file-name "custom-load.el" dir)))))
-
-
 ;;; Configure, Compile, and Install.
 
 (defun config-apel ()