1
0
Fork 0

Update readme

This commit is contained in:
retropikzel 2025-12-07 06:48:47 +02:00
parent f242adb81f
commit 6459c6e149
2 changed files with 12 additions and 16 deletions

View File

@ -53,12 +53,8 @@ OPTIONS
--list-r6rs List supported R6RS implementations. --list-r6rs List supported R6RS implementations.
--list-r6rs-except List supported R6RS implementations, except ones given.
--list-r7rs List supported R7RS implementations. --list-r7rs List supported R7RS implementations.
--list-r7rs-except List supported R7RS implementations, except ones given.
--list-all List all supported implementations. --list-all List all supported implementations.
--version Show the software version. --version Show the software version.
@ -91,29 +87,29 @@ CAVEATS
EXAMPLES EXAMPLES
Compile R6RS file with all dependencies in the same directory. 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 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 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 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 Compile R6RS file with dependencies in libs directory, to output named
foo. 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 Compile R7RS file with dependencies in libs directory, to output named
foo. 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) compile-scheme(1)
</pre> </pre>

View File

@ -102,24 +102,24 @@ Only supports one input-file.
.P .P
Compile R6RS file with all dependencies in the same directory. Compile R6RS file with all dependencies in the same directory.
.IP .IP
COMPILE_SCHEME=<SCHEME> compile-scheme main.sps COMPILE_SCHEME=SCHEME compile-scheme main.sps
.P .P
Compile R7RS file with all dependencies in the same directory. Compile R7RS file with all dependencies in the same directory.
.IP .IP
COMPILE_SCHEME=<SCHEME> compile-scheme main.scm COMPILE_SCHEME=SCHEME compile-scheme main.scm
.P .P
Compile R6RS file with dependencies in libs directory. Compile R6RS file with dependencies in libs directory.
.IP .IP
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs main.sps COMPILE_SCHEME=SCHEME compile-scheme -I ./libs main.sps
.P .P
Compile R7RS file with dependencies in libs directory. Compile R7RS file with dependencies in libs directory.
.IP .IP
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs main.scm COMPILE_SCHEME=SCHEME compile-scheme -I ./libs main.scm
.P .P
Compile R6RS file with dependencies in libs directory, to output named foo. Compile R6RS file with dependencies in libs directory, to output named foo.
.IP .IP
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs -o foo main.sps COMPILE_SCHEME=SCHEME compile-scheme -I ./libs -o foo main.sps
.P .P
Compile R7RS file with dependencies in libs directory, to output named foo. Compile R7RS file with dependencies in libs directory, to output named foo.
.IP .IP
COMPILE_SCHEME=<SCHEME> compile-scheme -I ./libs -o foo main.scm COMPILE_SCHEME=SCHEME compile-scheme -I ./libs -o foo main.scm