Fixes makefile on Debian based systems.

This commit is contained in:
Mark Tomlin 2020-11-03 23:59:08 -05:00 committed by GitHub
parent de61bd564f
commit cb32a0b12b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
CFLAGS?=-O2 -g -Wall -W $(shell pkg-config --cflags librtlsdr) 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 CC?=gcc
PROGNAME=dump1090 PROGNAME=dump1090
@ -9,7 +9,7 @@ all: dump1090
$(CC) $(CFLAGS) -c $< $(CC) $(CFLAGS) -c $<
dump1090: dump1090.o anet.o 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: clean:
rm -f *.o dump1090 rm -f *.o dump1090