summaryrefslogtreecommitdiff
path: root/test/Makefile.bsd
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile.bsd')
-rw-r--r--test/Makefile.bsd19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/Makefile.bsd b/test/Makefile.bsd
new file mode 100644
index 0000000..0befdba
--- /dev/null
+++ b/test/Makefile.bsd
@@ -0,0 +1,19 @@
+CC=gcc
+CFLAGS=-std=gnu11 -I../
+#LDFLAGS= `pkg-config --libs libusb` -L../../../r820t -lr820t -Wl,-rpath=../../../r820t
+LDFLAGS=`pkg-config --libs libusb` -lrtlsdr -lm ../radiola.o
+SOURCE = get_device_list.c read_samples.c sdr_fm.c ui_tui_waterfall.c
+OBJECTS =
+BIN = $(SOURCE:.c=)
+
+
+%: %.c
+ $(CC) $(LDFLAGS) $(CFLAGS) $< -o $@
+
+%.o: %.c
+ $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $(BUILD_DIR)$@
+
+make: $(BIN)
+
+clean:
+ rm -f $(BIN)