Skip to content
poiu.asd 1.32 KiB
Newer Older
;;; -*- mode: lisp -*-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;                                                                  ;;;
;;; Free Software, same MIT-style license as ASDF. See poiu.lisp.    ;;;
;;;                                                                  ;;;
;;; Copyright 2001 Daniel Barlow                                     ;;;
;;; Copyright 2007 ITA Software, Inc. All rights reserved.           ;;;
;;; Copyright 2011 Google, Inc. All rights reserved.                 ;;;
;;;                                                                  ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  :author ("Daniel Barlow" "Andreas Fuchs" "Francois-Rene Rideau")
  :maintainer "Francois-Rene Rideau"
  :licence "MIT"
  :description "POIU"
  :long-description "Parallel Operator on Independent Units
POIU is a variant of ASDF that may operate on your systems in parallel.
POIU will notably compile each Lisp file in its own forked process,
Francois-Rene Rideau's avatar
Francois-Rene Rideau committed
in parallel with other operations (compilation or loading).
However, it will load FASLs serially as they become available."
  :defsystem-depends-on (:asdf) ; let's enhance our chances that ASDF 3 is loaded.
Francois-Rene Rideau's avatar
Francois-Rene Rideau committed
  :version (:read-file-form "poiu.lisp" :at (1 2 2))
  :components ((:file "poiu")))