From 74339555f3880e95b355df54242584f3a435deb5 Mon Sep 17 00:00:00 2001 From: "sam@samtherapy.net" Date: Fri, 18 Mar 2022 17:36:44 +0000 Subject: [PATCH] Fix builds on debian Signed-off-by: Sam Therapy FossilOrigin-Name: 4b867c44d4771e727a5044e199069447fe78350e6ffa58813bd1cd476f8ad932 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e7fd8f5..83ca8d3 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ GIT ?= git MASTODONT_DIR = mastodont-c/ MASTODONT = $(MASTODONT_DIR)libmastodont.a CFLAGS += -Wall -I $(MASTODONT_DIR)include/ -Wno-unused-variable -Wno-discarded-qualifiers $(shell pkg-config --cflags libcurl libcjson libpcre) -LDFLAGS = $(shell pkg-config --libs libcjson libcurl libpcre) -L$(MASTODONT_DIR) -lmastodont +LDFLAGS = -L$(MASTODONT_DIR) -lmastodont $(shell pkg-config --libs libcjson libcurl libpcre) SRC = $(wildcard src/*.c) OBJ = $(patsubst %.c,%.o,$(SRC)) PAGES_DIR = static