16 lines
282 B
Makefile
16 lines
282 B
Makefile
CFLAGS=-O2 -g -Wall -W `pkg-config --cflags librtlsdr`
|
|
LIBS=`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 $(LIBS)
|
|
|
|
clean:
|
|
rm -f *.o dump1090
|