From d0511d45d39c5de64e82a89510edc681b483df9b Mon Sep 17 00:00:00 2001 From: Cody Logan Date: Mon, 27 Nov 2023 15:51:28 -0800 Subject: Initial commit --- 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..27dd859 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CC = cc +CFLAGS = -O2 -g -I/usr/local/include +LDFLAGS = -L/usr/local/lib +LIBS = -llowdown -lm -static -pie + +convert-markdown: convert-markdown.c + $(CC) $^ -o $@ $(CFLAGS) $(LDFLAGS) $(LIBS) + +clean: + rm -f convert-markdown -- cgit v1.2.3