X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=set-logical.cl;h=e14fa1cf04c38e3cbe437ee1c8557204702cf7be;hb=487cdc827a06b7c99b084ed1b9b9a2278e0568d3;hp=cb4224d7b98c07196d94c400c8fc5e8e7d07e183;hpb=5a544e155a2570dd10e88426a921db4e4d7aaa5f;p=clsql.git diff --git a/set-logical.cl b/set-logical.cl index cb4224d..e14fa1c 100644 --- a/set-logical.cl +++ b/set-logical.cl @@ -46,18 +46,45 @@ :host (pathname-host base-pathname) :device (pathname-device base-pathname) :directory (pathname-directory base-pathname))) + ("**;*.cl.*" ,(merge-pathnames + (make-pathname + :name :wild + :type :wild + :directory '(:relative :wild-inferiors)) + base-pathname)) + ("**;*.lisp.*" ,(merge-pathnames + (make-pathname + :name :wild + :type :wild + :directory '(:relative :wild-inferiors)) + base-pathname)) + ("**;*.c.*" ,(merge-pathnames + (make-pathname + :name :wild + :type :wild + :directory '(:relative :wild-inferiors)) + base-pathname)) + ("**;*.h.*" ,(merge-pathnames + (make-pathname + :name :wild + :type :wild + :directory '(:relative :wild-inferiors)) + base-pathname)) ("**;bin;*.*.*" ,(merge-pathnames (make-pathname :name :wild :type :wild :directory (append '(:relative :wild-inferiors - ".bin" #.+set-logical-compiler-name+))) + ".bin" #.+set-logical-compiler-name+))) base-pathname)) + ;; default is to place in .bin/ directory ("**;*.*.*" ,(merge-pathnames - (make-pathname + (make-pathname :name :wild :type :wild - :directory '(:relative :wild-inferiors)) - base-pathname)))) - ) + :directory + (append '(:relative :wild-inferiors + ".bin" #.+set-logical-compiler-name+))) + base-pathname))))) +