From ff74ac9359cfa1db4329fe5498a931b0b8b197ac Mon Sep 17 00:00:00 2001 From: retropikzel Date: Fri, 7 Nov 2025 17:45:48 +0200 Subject: [PATCH] Adding to manpage --- doc/compile-scheme.1 | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/doc/compile-scheme.1 b/doc/compile-scheme.1 index 464b0e5..b2158c4 100644 --- a/doc/compile-scheme.1 +++ b/doc/compile-scheme.1 @@ -97,10 +97,26 @@ Not all implementations support adding to beginning or end of load path so -I an Only supports one input-file. .SH EXAMPLES .P -Compile single R6RS file with all dependencies in the same folder. +Compile R6RS file with all dependencies in the same directory. .IP COMPILE_SCHEME= compile-scheme main.sps .P -Compile single R7RS file with all dependencies in the same folder. +Compile R7RS file with all dependencies in the same directory. .IP COMPILE_SCHEME= compile-scheme main.scm +.P +Compile R6RS file with dependencies in libs directory. +.IP +COMPILE_SCHEME= compile-scheme -I ./libs main.sps +.P +Compile R7RS file with dependencies in libs directory. +.IP +COMPILE_SCHEME= compile-scheme -I ./libs main.scm +.P +Compile R6RS file with dependencies in libs directory, to output named foo. +.IP +COMPILE_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= compile-scheme -I ./libs -o foo main.scm