-# really this is private to my build process
?
??
???
-????
-?????
-generate-asdf.lisp
+build
-# Temporary files from documentation build
doc/asdf/
doc/asdf.aux
doc/asdf.cp
doc/asdf.vrs
doc/asdf.t2d/
-# We build these at various stages in the build and test process
LICENSE
tmp/
*.dribble
test/try-reloading-dependency.asd
test/fileMissing.lisp
-# debian stuff
build-stamp
debian/cl-asdf.debhelper.log
debian/cl-asdf.postinst.debhelper
--- /dev/null
+(in-package :asdf/package)
+
`(testing-asdf #'(lambda () ,@body)))
(defun close-inputs ()
- (close *standard-input*))
+ #-ecl (close *standard-input*))
(defun configure-asdf ()
(untrace)
--- /dev/null
+#|
+make sure that serial t and static-files don't cause full rebuilds all
+the time...
+|#
+
+(defsystem static-and-serial
+ :version "0.1"
+ :serial t
+ :components
+ ((:static-file "file2.lisp")
+ (:static-file "run-tests.sh")
+ (:file "file1")))
--- /dev/null
+(defpackage :test-package (:use :cl))
+(in-package :test-package)
+(defvar *file3* t)
+(defpackage :test-package (:use :cl))
+(in-package :test-package)
+(defvar *file1* t)
+(in-package :test-package)
+(assert *file1*)