Add libs to LDLIBS and leave LDFLAGS untouched. $(shell ) only evaluates once.

This commit is contained in:
Michael Weber 2015-03-10 14:49:14 +01:00
parent f43777bdc4
commit 45856db3ee

View File

@ -1,5 +1,5 @@
CFLAGS?=-O2 -g -Wall -W `pkg-config --cflags librtlsdr`
LDFLAGS?=`pkg-config --libs librtlsdr` -lpthread -lm
CFLAGS?=-O2 -g -Wall -W $(shell pkg-config --cflags librtlsdr)
LDLIBS+=$(shell pkg-config --libs librtlsdr) -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)
$(CC) -g -o dump1090 dump1090.o anet.o $(LDFLAGS) $(LDLIBS)
clean:
rm -f *.o dump1090