From fa74c1448e236995a34d767a6e76c3055698fb60 Mon Sep 17 00:00:00 2001 From: FreeArtMan <=> Date: Tue, 22 Sep 2015 20:16:47 +0100 Subject: Wrapped rtlsdr to hw --- test/Makefile | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'test') diff --git a/test/Makefile b/test/Makefile index 8e36d37..5ee5a91 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,15 +1,20 @@ CC=gcc -CFLAGS=-I../../r820t/include -LDFLAGS= `pkg-config --libs libusb` -L../../../r820t -lr820t -Wl,-rpath=../../../r820t - -SOURCE += $(wildcard *.c) +CFLAGS= +#LDFLAGS= `pkg-config --libs libusb` -L../../../r820t -lr820t -Wl,-rpath=../../../r820t +LDFLAGS=`pkg-config --libs libusb` -lrtlsdr +SOURCE = $(wildcard *.c) +OBJECTS = BIN = $(SOURCE:.c=) -make: $(BIN) - @echo $< %: %.c - $(CC) $(LDFLAGS) $(CFLAGS) $< -o $@ + $(CC) $(LDFLAGS) $(CFLAGS) $< -o $@ + +%.o: %.c + $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $(BUILD_DIR)$@ + +make: $(BIN) + clean: rm -f $(BIN) \ No newline at end of file -- cgit v1.2.3