From 49de757688460a45abccb8ab785cd97b3e830f19 Mon Sep 17 00:00:00 2001 From: Saba Saba Date: Thu, 9 Feb 2023 12:26:21 -0500 Subject: [PATCH] Merged make-install into make --- git-repl.cl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/git-repl.cl b/git-repl.cl index 8fd2c28..0d9767a 100644 --- a/git-repl.cl +++ b/git-repl.cl @@ -225,14 +225,10 @@ (terpri) (force-output))))) -(defun-public make (executable-name &key (source-file nil)) +(defun-public make (&key (executable-name *installation-file*) (source-file "git-repl.cl")) "Compiles the current state into an executable" (progn (if source-file (load (compile-file source-file)) nil) (save-lisp-and-die executable-name :toplevel #'main :executable t))) - -(defun-public make-install (&key (source-file "git-repl.cl")) - "Compiles the current state into an executable and installs it to *installation-file*" - (make *installation-file* :source-file source-file)) -- 2.20.1