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
|
markam
|
||||||
*.o
|
*.o
|
||||||
|
|
|
@ -2,11 +2,11 @@ objects = paths.o common.o
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
|
|
||||||
all: markam convert
|
all: markam markam-convert
|
||||||
markam: markam.scm $(objects)
|
markam: markam.scm $(objects)
|
||||||
csc $^ -o $@
|
csc $^ -o $@
|
||||||
|
|
||||||
convert: convert.scm $(objects)
|
markam-convert: markam-convert.scm $(objects)
|
||||||
csc $^ -o $@
|
csc $^ -o $@
|
||||||
|
|
||||||
$(objects): %.o: %.scm
|
$(objects): %.o: %.scm
|
||||||
|
|
|
@ -80,7 +80,7 @@
|
||||||
(define (display-help)
|
(define (display-help)
|
||||||
;; Display markam's help message.
|
;; Display markam's help message.
|
||||||
(format #t (string-append
|
(format #t (string-append
|
||||||
"Usage: convert [options]...~%"
|
"Usage: markam-convert [options]...~%"
|
||||||
"~%"
|
"~%"
|
||||||
"Possible options:~%"
|
"Possible options:~%"
|
||||||
"~%"
|
"~%"
|
Loading…
Reference in a new issue