Rename convert to markam-convert
This commit is contained in:
parent
b467939385
commit
3820e65992
3 changed files with 4 additions and 4 deletions
2
src/.gitignore
vendored
2
src/.gitignore
vendored
|
@ -1,3 +1,3 @@
|
|||
convert
|
||||
markam-convert
|
||||
markam
|
||||
*.o
|
||||
|
|
|
@ -2,11 +2,11 @@ objects = paths.o common.o
|
|||
|
||||
.PHONY: all
|
||||
|
||||
all: markam convert
|
||||
all: markam markam-convert
|
||||
markam: markam.scm $(objects)
|
||||
csc $^ -o $@
|
||||
|
||||
convert: convert.scm $(objects)
|
||||
markam-convert: markam-convert.scm $(objects)
|
||||
csc $^ -o $@
|
||||
|
||||
$(objects): %.o: %.scm
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
(define (display-help)
|
||||
;; Display markam's help message.
|
||||
(format #t (string-append
|
||||
"Usage: convert [options]...~%"
|
||||
"Usage: markam-convert [options]...~%"
|
||||
"~%"
|
||||
"Possible options:~%"
|
||||
"~%"
|
Loading…
Reference in a new issue