mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-04 18:36:12 +02:00
Improvements to the make save facility.
This commit is contained in:
parent
13bdb2d118
commit
9ce4088b48
3
Makefile
3
Makefile
@ -167,6 +167,9 @@ test: $(PGLOADER)
|
||||
save: ./src/save.lisp $(LISP_SRC)
|
||||
sbcl --no-userinit --load ./src/save.lisp
|
||||
|
||||
check-saved: save
|
||||
$(MAKE) PGLOADER=$(realpath $(PGLOADER)) CL=$(CL) -C test regress
|
||||
|
||||
clean-bundle:
|
||||
rm -rf $(BUNDLEDIR)
|
||||
rm -rf $(BUNDLETESTD)/$(BUNDLENAME)/*
|
||||
|
||||
@ -12,6 +12,16 @@
|
||||
when unset."
|
||||
(or (sb-ext:posix-getenv name) default))
|
||||
|
||||
;; So that we can #+pgloader-image some code away, see main.lisp
|
||||
(push :pgloader-image *features*)
|
||||
|
||||
;;;
|
||||
;;; We need to support *print-circle* for the debug traces of the catalogs,
|
||||
;;; and while at it let's enforce *print-pretty* too.
|
||||
;;;
|
||||
(setf *print-circle* t *print-pretty* t)
|
||||
|
||||
|
||||
(require :asdf) ; should work in SBCL and CCL
|
||||
|
||||
(defvar *quicklisp.lisp* "http://beta.quicklisp.org/quicklisp.lisp")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user