Merge pull request #76 from xmw/master
Add libs to LDLIBS and leave LDFLAGS untouched
This commit is contained in:
commit
823631979b
6
Makefile
6
Makefile
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user