From 2fe328e64067f77070de3ba51f5cff3643afc47f Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Thu, 20 Aug 2026 23:00:32 +0200 Subject: colitur-x: raw Xlib month grid for colitur Reads colitur emit --format csv on stdin and draws the year as a month grid coloured by liturgical colour, with the selected day's readings below. A separate program on purpose: colitur's dependencies are frozen and its kernel is pure, so a front-end composes with it rather than living in it. Configuration is compile-time, the same model clectio uses. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c74426a --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +CFLAGS = -std=c99 -Os -Wall -Wextra $(shell pkg-config --cflags xft x11) +LDLIBS = $(shell pkg-config --libs xft x11) +colitur-x: colitur-x.c config.h + $(CC) $(CFLAGS) -o $@ colitur-x.c $(LDLIBS) +clean:; rm -f colitur-x -- cgit v1.3