cl-pcg.asd @ 7781bd17fcdc

Add a ros file for testing with dieharder
author Steve Losh <steve@stevelosh.com>
date Sun, 12 Feb 2017 01:14:43 +0000
parents c6a3ab353556
children d8537fcd89e5
(asdf:defsystem :cl-pcg
  :description "A bare-bones Permuted Congruential Generator implementation in pure Common Lisp."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"
  :version "1.0.0"

  :depends-on (#+sbcl :sb-rotate-byte)

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "pcg")))))