aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-02-15 17:52:04 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-02-15 17:52:04 +0000
commit0c04a32251d46664a755221b8f37edc87dc7d267 (patch)
tree8ac3315daf3267b87cb4841f36642676cfe4858d
parenta73b0f9729eafde6ceed4bfc35f76476ae1e8887 (diff)
downloadcantedraw-0c04a32251d46664a755221b8f37edc87dc7d267.tar.gz
cantedraw-0c04a32251d46664a755221b8f37edc87dc7d267.tar.bz2
cantedraw-0c04a32251d46664a755221b8f37edc87dc7d267.zip
Yakshaving bob the builder
-rw-r--r--bob.lisp10
1 files changed, 3 insertions, 7 deletions
diff --git a/bob.lisp b/bob.lisp
index 15368e0..5d08c7f 100644
--- a/bob.lisp
+++ b/bob.lisp
@@ -24,17 +24,13 @@
(defpackage bob
(:use :cl)
- (:export :build :load-all))
+ (:export :build :qload))
(in-package :bob)
-(defun init ()
+(defun qload ()
(ql:quickload :cantedraw))
-(defun load-all ()
- (init)
- (asdf:load-system :cantedraw))
-
(defun build ()
- (init)
+ (qload)
(asdf:make :cantedraw))