aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2025-07-18 15:16:11 +0200
committerGravatar Christian Hesse <mail@eworm.de>2025-07-18 15:16:11 +0200
commitbc7372a11c8fe45643f5a922a93c6cf1f3fae59a (patch)
treed6e2034f0b3b86b62d2e9a7fe84c3adc6e36b492
parentc2842ac808e538ba95d682ced5bf836512219e47 (diff)
downloadcqrlogo-main.tar.gz
cqrlogo-main.tar.zst
README: use code blocksHEADnextmain
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index eeeda8d..0208e0e 100644
--- a/README.md
+++ b/README.md
@@ -43,11 +43,11 @@ Build and install
Building and installing is very easy. Just run:
-> make
+ make
followed by:
-> make install
+ make install
This will place a shared library at `/usr/lib/libcqrlogo.so`, an
executable at `/usr/lib/cqrlogo/cqrlogo` and documentation can be found in
@@ -62,7 +62,7 @@ rerun the commands above.
In case you do not like the shared library `libcqrlogo.so` for whatever
reason you can build a statically linked version:
-> make static
+ make static
However there is no install routine for the static build. Please note
that this is still dynamically linked to `libpng`, `libz`,
@@ -128,7 +128,7 @@ your custom needs. This is minimal sample source code:
Save this code to `cqrlogo.c` and run:
-> gcc -lcqrlogo -o cqrlogo.cgi cqrlogo.c
+ gcc -lcqrlogo -o cqrlogo.cgi cqrlogo.c
This will result in a CGI executable `cqrlogo.cgi`.