From 74a89676841f37d83c1ec02c9813fec95d773c55 Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 30 Aug 2021 21:57:11 +0200 Subject: Put together a simple text renderer to a PNG --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b27a35c --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CFLAGS += -Wall -Wextra -Wpedantic +CFLAGS += `pkg-config --cflags cairo pango pangocairo` +LDLIBS += -lm `pkg-config --libs cairo pango pangocairo` + +all: text + +clean: + rm -f text *.o + +.PHONY: all clean -- cgit v1.1