Fixes makefile on Debian based systems.
This commit is contained in:
parent
de61bd564f
commit
cb32a0b12b
4
Makefile
4
Makefile
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user