Update readme
This commit is contained in:
parent
f242adb81f
commit
6459c6e149
16
README.md
16
README.md
|
|
@ -53,12 +53,8 @@ OPTIONS
|
|||
|
||||
--list-r6rs List supported R6RS implementations.
|
||||
|
||||
--list-r6rs-except List supported R6RS implementations, except ones given.
|
||||
|
||||
--list-r7rs List supported R7RS implementations.
|
||||
|
||||
--list-r7rs-except List supported R7RS implementations, except ones given.
|
||||
|
||||
--list-all List all supported implementations.
|
||||
|
||||
--version Show the software version.
|
||||
|
|
@ -91,29 +87,29 @@ CAVEATS
|
|||
EXAMPLES
|
||||
Compile R6RS file with all dependencies in the same directory.
|
||||
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme main.sps
|
||||
COMPILE_SCHEME=SCHEME compile-scheme main.sps
|
||||
|
||||
Compile R7RS file with all dependencies in the same directory.
|
||||
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme main.scm
|
||||
COMPILE_SCHEME=SCHEME compile-scheme main.scm
|
||||
|
||||
Compile R6RS file with dependencies in libs directory.
|
||||
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs main.sps
|
||||
COMPILE_SCHEME=SCHEME compile-scheme -I ./libs main.sps
|
||||
|
||||
Compile R7RS file with dependencies in libs directory.
|
||||
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs main.scm
|
||||
COMPILE_SCHEME=SCHEME compile-scheme -I ./libs main.scm
|
||||
|
||||
Compile R6RS file with dependencies in libs directory, to output named
|
||||
foo.
|
||||
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs -o foo main.sps
|
||||
COMPILE_SCHEME=SCHEME compile-scheme -I ./libs -o foo main.sps
|
||||
|
||||
Compile R7RS file with dependencies in libs directory, to output named
|
||||
foo.
|
||||
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs -o foo main.scm
|
||||
COMPILE_SCHEME=SCHEME compile-scheme -I ./libs -o foo main.scm
|
||||
|
||||
compile-scheme(1)
|
||||
</pre>
|
||||
|
|
@ -102,24 +102,24 @@ Only supports one input-file.
|
|||
.P
|
||||
Compile R6RS file with all dependencies in the same directory.
|
||||
.IP
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme main.sps
|
||||
COMPILE_SCHEME=SCHEME compile-scheme main.sps
|
||||
.P
|
||||
Compile R7RS file with all dependencies in the same directory.
|
||||
.IP
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme main.scm
|
||||
COMPILE_SCHEME=SCHEME compile-scheme main.scm
|
||||
.P
|
||||
Compile R6RS file with dependencies in libs directory.
|
||||
.IP
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs main.sps
|
||||
COMPILE_SCHEME=SCHEME compile-scheme -I ./libs main.sps
|
||||
.P
|
||||
Compile R7RS file with dependencies in libs directory.
|
||||
.IP
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs main.scm
|
||||
COMPILE_SCHEME=SCHEME compile-scheme -I ./libs main.scm
|
||||
.P
|
||||
Compile R6RS file with dependencies in libs directory, to output named foo.
|
||||
.IP
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs -o foo main.sps
|
||||
COMPILE_SCHEME=SCHEME compile-scheme -I ./libs -o foo main.sps
|
||||
.P
|
||||
Compile R7RS file with dependencies in libs directory, to output named foo.
|
||||
.IP
|
||||
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs -o foo main.scm
|
||||
COMPILE_SCHEME=SCHEME compile-scheme -I ./libs -o foo main.scm
|
||||
|
|
|
|||
Loading…
Reference in New Issue