(in-package :user) (defsystem :gdft () :members ("packages" "json" "http-utils" "hmac-sha1" "oauth" "twapper" "twitter" "google-fusion-tables" ) :rules ((:in-order-to :compile ("json" "http-utils" "hmac-sha1") (:caused-by (:compile "packages")) (:requires (:load "packages"))) (:in-order-to :compile ("oauth") (:caused-by (:compile "http-utils" "hmac-sha1")) (:requires (:load "http-utils" "hmac-sha1"))) (:in-order-to :compile ("twapper") (:caused-by (:compile "http-utils")) (:requires (:load "http-utils"))) (:in-order-to :compile ("twitter") (:caused-by (:compile "oauth")) (:requires (:load "oauth"))) (:in-order-to :compile ("google-fusion-tables") (:caused-by (:compile "oauth")) (:requires (:load "oauth"))))) ;(compile-system :gdft :load t)