aboutsummaryrefslogtreecommitdiff
path: root/yapymake/args.py
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-03-26 00:09:58 -0600
committerMelody Horn <melody@boringcactus.com>2021-03-26 00:09:58 -0600
commite78d5daa7b688bd5f68597d3c059ae53618762c8 (patch)
tree7b068de065214c5def65aec12fa7165892be5021 /yapymake/args.py
parentc94b46ef42fcabae781ba22513c961f1068aa0ab (diff)
downloadyapymake-e78d5daa7b688bd5f68597d3c059ae53618762c8.tar.gz
yapymake-e78d5daa7b688bd5f68597d3c059ae53618762c8.zip
rebalance TODO structureHEADcanon
Diffstat (limited to 'yapymake/args.py')
-rw-r--r--yapymake/args.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/yapymake/args.py b/yapymake/args.py
index 3f9d842..60aafe8 100644
--- a/yapymake/args.py
+++ b/yapymake/args.py
@@ -26,6 +26,7 @@ parser.add_argument('--makefile', '--file', '-f',
parser.add_argument('--ignore-errors', '-i',
action='store_true',
help='Ignore error codes returned by invoked commands.')
+# TODO implement keep-going
parser.add_argument('--keep-going', '-k',
action='store_true',
help='Continue to update other targets that do not depend on the current target if a non-ignored '
@@ -37,6 +38,7 @@ parser.add_argument('--dry-run', '--just-print', '--recon', '-n',
parser.add_argument('--print-everything', '--print-data-base', '-p',
action='store_true',
help='Write to standard output the complete set of macro definitions and target descriptions.')
+# TODO implement question
parser.add_argument('--question', '-q',
action='store_true',
help='Return a zero exit value if the target file is up-to-date; otherwise, return an exit value '
@@ -53,6 +55,7 @@ parser.add_argument('--no-keep-going', '--stop', '-S',
parser.add_argument('--silent', '--quiet', '-s',
action='store_true',
help='Do not write makefile command lines or touch messages to standard output before executing.')
+# TODO implement touch
parser.add_argument('--touch', '-t',
action='store_true',
help='Update the modification time of each target as though a touch target had been executed.')