X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fasdf%2FMakefile;h=658d5833a635687107854c162591ab5b321502af;hb=920b5eb02b1e1fd1c6c28395cade04e81fbee2bb;hp=7a4db971d5d7c811f88c4dede14fb792ea4c333f;hpb=77f6e094a26f45886047dbe7270c050d44cb5a2d;p=sbcl.git diff --git a/contrib/asdf/Makefile b/contrib/asdf/Makefile index 7a4db97..658d583 100644 --- a/contrib/asdf/Makefile +++ b/contrib/asdf/Makefile @@ -1,14 +1,21 @@ -MODULE=asdf -include ../vanilla-module.mk +DEST=$(SBCL_PWD)/obj/sbcl-home/contrib/ +FASL=$(DEST)/asdf.fasl +fasl:: $(FASL) +$(FASL):: asdf.lisp ../../output/sbcl.core + if [ -d asdf-upstream ] ; then rm -rf asdf-upstream ; fi + mkdir -p $(DEST) + $(SBCL) --eval '(compile-file #p"SYS:CONTRIB;ASDF;ASDF.LISP" :output-file (parse-native-namestring "$@"))'