X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-rotate-byte%2Fsb-rotate-byte.asd;h=036f1ba484880e324afd98be87f09d8081557f22;hb=8369a441bfd49566e70939c25f42f8d1f5423e4e;hp=a445c1fb8978c037ed0764595f4754be9ef960a6;hpb=6ffb09605de7f990332aee146d8f69ba4cc907c9;p=sbcl.git diff --git a/contrib/sb-rotate-byte/sb-rotate-byte.asd b/contrib/sb-rotate-byte/sb-rotate-byte.asd index a445c1f..036f1ba 100644 --- a/contrib/sb-rotate-byte/sb-rotate-byte.asd +++ b/contrib/sb-rotate-byte/sb-rotate-byte.asd @@ -1,27 +1,28 @@ ;;; -*- Lisp -*- -(cl:defpackage #:sb-rotate-byte-system +(cl:defpackage #:sb-rotate-byte-system (:use #:asdf #:cl)) (cl:in-package #:sb-rotate-byte-system) (defsystem sb-rotate-byte :version "0.1" #+sb-building-contrib :pathname - #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" - :components + #+sb-building-contrib #p"SYS:CONTRIB;SB-ROTATE-BYTE;" + :components ((:file "package") (:file "compiler" :depends-on ("package")) (:module "vm" - :depends-on ("compiler") - :components - ((:file "x86-vm" - :in-order-to ((compile-op (feature :x86)))) - (:file "ppc-vm" - :in-order-to ((compile-op (feature :ppc))))) - :pathname - #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" - #-sb-building-contrib #.(make-pathname :directory '(:relative)) - :if-component-dep-fails :ignore) + :depends-on ("compiler") + :components + (#+x86 + (:file "x86-vm") + #+x86-64 + (:file "x86-64-vm") + #+ppc + (:file "ppc-vm")) + :pathname + #+sb-building-contrib #p"SYS:CONTRIB;SB-ROTATE-BYTE;" + #-sb-building-contrib #.(make-pathname :directory '(:relative))) (:file "rotate-byte" :depends-on ("compiler")))) (defmethod perform :after ((o load-op) (c (eql (find-system :sb-rotate-byte))))