mirror of
https://github.com/rtlsdrblog/rtl-sdr-blog.git
synced 2025-06-01 02:14:15 +02:00
11 lines
217 B
Makefile
11 lines
217 B
Makefile
LDFLAGS=`pkg-config --libs libusb-1.0`
|
|
CFLAGS=-Wall -g -O0 `pkg-config --cflags libusb-1.0`
|
|
|
|
all: rtl-sdr
|
|
|
|
rtl-sdr: main.o rtl-sdr.o tuner_e4000.o tuner_fc0013.c
|
|
$(CC) -o $@ $^ $(LDFLAGS)
|
|
|
|
clean:
|
|
@rm -f rtl-sdr *.o
|