r2284: Autocommit for make-debian
[clsql.git] / set-logical.cl
index cb4224d7b98c07196d94c400c8fc5e8e7d07e183..e14fa1cf04c38e3cbe437ee1c8557204702cf7be 100644 (file)
                :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/<compiler> 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)))))
+