From 168e25bf20ee4e2bb2b820000b634fad7d2139aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Mon, 20 Mar 2023 22:47:08 +0100 Subject: [PATCH] Document all make targets. --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ac1ca3..1592158 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,13 @@ Build requirements: * Chicken Scheme 5 * make (tested with GNU make) +Building a shared binary with .so modules: + + make shared + Building static binary: - make bbstool-static + make static It is possible to run the main tool as script with Chicken Scheme interpreter and POSIX-compatible shell for the purpose of development. @@ -60,6 +64,18 @@ Development requirements: * POSIX shell +Preparing module import files for running as script: + + make + +Cleaning the built files from the build directory: + + make clean + +Building the import module files, shared and static binaries together: + + make all + Functional Modules ------------------