From 9d81444490b4329a34ba77236f023d3b7008c8ed Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Mon, 29 Aug 2022 09:42:56 +0200 Subject: [PATCH] Add pointers to directories Signed-off-by: Jacob Hrbek --- examples/zz-README.org | 1 + make/zz-README.org | 1 + pmake | 2 +- potato/make.scm | 2 +- tests/zz-README.org | 1 + 5 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 examples/zz-README.org create mode 100644 make/zz-README.org create mode 100644 tests/zz-README.org diff --git a/examples/zz-README.org b/examples/zz-README.org new file mode 100644 index 0000000..891444e --- /dev/null +++ b/examples/zz-README.org @@ -0,0 +1 @@ +Example use of the project diff --git a/make/zz-README.org b/make/zz-README.org new file mode 100644 index 0000000..f755c63 --- /dev/null +++ b/make/zz-README.org @@ -0,0 +1 @@ +Backend the command `pmake` diff --git a/pmake b/pmake index 0827bd4..4c6e61f 100755 --- a/pmake +++ b/pmake @@ -1,3 +1,3 @@ #!/usr/bin/env sh -exec guile -L . -e '(@ (make main) main)' -s "$0" "$@" +exec guile -L . -e '(@ (pmake main) main)' -s "$0" "$@" !# diff --git a/potato/make.scm b/potato/make.scm index f12f445..1cab811 100644 --- a/potato/make.scm +++ b/potato/make.scm @@ -303,7 +303,7 @@ targets listed on the parsed command-line are used." ;; else (debug "There are no target rules in the recipe.~%")))) - ;; Build each target in order. + ;; Build each target in order (when (not (null? targets)) (let loop ((target (car targets)) (rest (cdr targets))) diff --git a/tests/zz-README.org b/tests/zz-README.org new file mode 100644 index 0000000..02b2c29 --- /dev/null +++ b/tests/zz-README.org @@ -0,0 +1 @@ +Directory storing tests