From cb32a0b12bca1dcb824e1e7db8d6ffe2bd5f8ca7 Mon Sep 17 00:00:00 2001 From: Mark Tomlin Date: Tue, 3 Nov 2020 23:59:08 -0500 Subject: [PATCH] Fixes makefile on Debian based systems. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f9637b7eb..3f2cf0cdb 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CFLAGS?=-O2 -g -Wall -W $(shell pkg-config --cflags librtlsdr) -LDLIBS+=$(shell pkg-config --libs librtlsdr) -lpthread -lm +LDLIBS+=-lrtlsdr -L -lpthread -lm CC?=gcc PROGNAME=dump1090 @@ -9,7 +9,7 @@ all: dump1090 $(CC) $(CFLAGS) -c $< dump1090: dump1090.o anet.o - $(CC) -g -o dump1090 dump1090.o anet.o $(LDFLAGS) $(LDLIBS) + $(CC) -g -pthread -o dump1090 dump1090.o anet.o $(LDFLAGS) $(LDLIBS) clean: rm -f *.o dump1090