Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
2c1de32c
Commit
2c1de32c
authored
Jun 02, 2014
by
Francois-Rene Rideau
Browse files
Add docstrings for the latest two commands.
parent
cc1336b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/main.lisp
View file @
2c1de32c
...
...
@@ -53,10 +53,14 @@
(
sort
(
mapcar
'command-name
(
public-commands
))
'string<
))
(
defun
show-commands
()
"print the (sorted list of) names of all the public commands of asdf-tools."
(
format
t
"~{~A~^ ~}~%"
(
public-command-strings
))
(
values
))
(
defun
makefile-targets
()
"print declaration for the public commands of asdf-tools as as many Makefile targets
so that, when included in the Makefile, they will enable shell completion
based on a list of targets"
(
let
((
c
(
public-command-strings
)))
;;(format t ".PHONY: ~{~A~^ ~}~%~%~{~A:~%~}~%" c c))
(
format
t
"~{~A:~%~}~%"
c
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment