Add libs to LDLIBS and leave LDFLAGS untouched. $(shell ) only evaluates once.
This commit is contained in:
parent
f43777bdc4
commit
45856db3ee
6
Makefile
6
Makefile
@ -1,5 +1,5 @@
|
|||||||
CFLAGS?=-O2 -g -Wall -W `pkg-config --cflags librtlsdr`
|
CFLAGS?=-O2 -g -Wall -W $(shell pkg-config --cflags librtlsdr)
|
||||||
LDFLAGS?=`pkg-config --libs librtlsdr` -lpthread -lm
|
LDLIBS+=$(shell pkg-config --libs librtlsdr) -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)
|
$(CC) -g -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