From 037c44d94262bee77f8eef4ab71d16b1c492da01 Mon Sep 17 00:00:00 2001 From: Cody Logan Date: Mon, 27 Nov 2023 15:53:04 -0800 Subject: Add libbsd and libmd to Makefile for compiling on Linux --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 27dd859..00d5635 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,8 @@ CC = cc CFLAGS = -O2 -g -I/usr/local/include LDFLAGS = -L/usr/local/lib LIBS = -llowdown -lm -static -pie +# uncomment on Linux +#LIBS += -lbsd -lmd convert-markdown: convert-markdown.c $(CC) $^ -o $@ $(CFLAGS) $(LDFLAGS) $(LIBS) -- cgit v1.2.3