dump1090/Makefile
Steven Kreuzer 36cec38231 Rename the LIBS variable to LDFLAGS
Change the assignment operator of CFLAGS and CC to be '?='
2015-03-04 14:16:43 +00:00

16 lines
291 B
Makefile

CFLAGS?=-O2 -g -Wall -W `pkg-config --cflags librtlsdr`
LDFLAGS?=`pkg-config --libs librtlsdr` -lpthread -lm
CC?=gcc
PROGNAME=dump1090
all: dump1090
%.o: %.c
$(CC) $(CFLAGS) -c $<
dump1090: dump1090.o anet.o
$(CC) -g -o dump1090 dump1090.o anet.o $(LDFLAGS)
clean:
rm -f *.o dump1090