Skip to content
poiu.asd 1.14 KiB
Newer Older
;;; -*- mode: lisp -*-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;                                                                  ;;;
;;; Free Software, same MIT-style license as ASDF. See poiu.lisp.    ;;;
;;;                                                                  ;;;
Francois-Rene Rideau's avatar
Francois-Rene Rideau committed
;;; Copyright (c) 2001-2010 ITA Software, Inc.  All rights reserved. ;;;
;;;                                                                  ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(asdf:defsystem :poiu
    :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."
    ;; Make sure asdf won't be reloaded on top of poiu.
    :depends-on ((:version :asdf "2.010"))
Francois-Rene Rideau's avatar
Francois-Rene Rideau committed
    :components ((:file "poiu")))