DEST=$(SBCL_TOP)/obj/sbcl-home/contrib/
ASDF_FASL=$(DEST)/asdf.fasl
UIOP_FASL=$(DEST)/uiop.fasl
FASL=$(UIOP_FASL) $(ASDF_FASL)
FROB_READTABLE='(setf (sb-ext:readtable-base-char-preference *readtable*) :both)'
fasl:: $(UIOP_FASL) $(ASDF_FASL)
$(UIOP_FASL):: uiop.lisp ../../output/sbcl.core
mkdir -p $(DEST)
$(SBCL) --eval $(FROB_READTABLE) --eval '(compile-file
$(ASDF_FASL):: asdf.lisp ../../output/sbcl.core $(UIOP_FASL)
if [ -d asdf-upstream ] ; then rm -rf asdf-upstream ; fi
mkdir -p $(DEST)
$(SBCL) --eval $(FROB_READTABLE) --eval '(compile-file
install::
cp $(FASL) "$(BUILD_ROOT)$(INSTALL_DIR)"
test:: $(FASL)
true
UPSTREAM=../../obj/asdf-upstream
up::
sh pull-asdf.sh