lorid

convert chordpro to pdf
git clone git://git.relim.de/lorid.git
Log | Files | Refs | README | LICENSE

commit d4c75e1473449909711bad925013dc049b56eda2
parent c55cb59aa925b45732ed1d0f0e53adc4fa0f606d
Author: nibo <nibo@relim.de>
Date:   Mon, 24 Feb 2025 21:11:48 +0100

Change formatting a bit

Diffstat:
MMakefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -9,7 +9,10 @@ SRC = src/util.c src/config.c src/chordpro.c src/chord_diagram.c src/out_pdf.c s COLOR = 0 # Exact font family name, e.g. from `fc-list : family` DEFAULT_FONT = "Open Sans" -VARS = -DDEFAULT_FONT=\"${DEFAULT_FONT}\" -DVERSION=\"${VERSION}\" -DCOLOR=${COLOR} -DPREFIX=\"${PREFIX}\" +VARS = -DDEFAULT_FONT=\"${DEFAULT_FONT}\" \ + -DVERSION=\"${VERSION}\" \ + -DCOLOR=${COLOR} \ + -DPREFIX=\"${PREFIX}\" compile: $(CC) ${CFLAGS} ${VARS} -O2 ${SRC} -o lorid ${LDFLAGS}