diff --git a/src/pegrep.asd b/pegrep.asd similarity index 83% rename from src/pegrep.asd rename to pegrep.asd index 310b12c..439fc98 100644 --- a/src/pegrep.asd +++ b/pegrep.asd @@ -6,11 +6,14 @@ :build-operation "program-op" :entry-point "pegrep:entry" :depends-on ("alexandria") - :components ((:file "pegrep")) + :components + ((:module "./src" + :serial t + :components ((:file "pegrep")))) ,@args)) (def-pegrep :pegrep - :build-pathname "../build/pegrep" + :build-pathname "./build/pegrep" :around-compile (lambda (next) (proclaim '(optimize (safety 3) @@ -19,7 +22,7 @@ (funcall next))) (def-pegrep :pegrep/faf - :build-pathname "../build/pegrep-faf" + :build-pathname "./build/pegrep-faf" :around-compile (lambda (next) (proclaim '(optimize (safety 0) @@ -28,7 +31,7 @@ (funcall next))) (def-pegrep :pegrep/debug - :build-pathname "../build/pegrep-debug" + :build-pathname "./build/pegrep-debug" :around-compile (lambda (next) (proclaim '(optimize (safety 3) @@ -40,6 +43,6 @@ :depends-on (:pegrep :fiveam) :perform (test-op (o s) (uiop:symbol-call :pegrep-tests :test-pegrep)) - :components ((:module "../test" + :components ((:module "./test" :serial t :components ((:file "main")))))