summaryrefslogtreecommitdiff
path: root/gr-msdd6000/src/non_gr_snapshot_tool/Makefile
diff options
context:
space:
mode:
authorn4hy2008-07-04 02:56:31 +0000
committern4hy2008-07-04 02:56:31 +0000
commit31bd7da7765b5fc74f588fd025b509049152518c (patch)
tree4c228c4781e64637cce2f7eb5c3e219f2ddb3455 /gr-msdd6000/src/non_gr_snapshot_tool/Makefile
parent0096b08f3305101c7657a1971afa1cb45a855be0 (diff)
downloadgnuradio-31bd7da7765b5fc74f588fd025b509049152518c.tar.gz
gnuradio-31bd7da7765b5fc74f588fd025b509049152518c.tar.bz2
gnuradio-31bd7da7765b5fc74f588fd025b509049152518c.zip
lots of example and other useful code for use with the softronics msdd6000
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@8784 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-msdd6000/src/non_gr_snapshot_tool/Makefile')
-rw-r--r--gr-msdd6000/src/non_gr_snapshot_tool/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/gr-msdd6000/src/non_gr_snapshot_tool/Makefile b/gr-msdd6000/src/non_gr_snapshot_tool/Makefile
new file mode 100644
index 000000000..213d68e0b
--- /dev/null
+++ b/gr-msdd6000/src/non_gr_snapshot_tool/Makefile
@@ -0,0 +1,13 @@
+CCFLAGS = -O3
+LDFLAGS = -lpthread
+FFTW_LDFLAGS = -lfftw3f
+
+
+all:
+ g++ $(CCFLAGS) -c client5.cc
+ g++ $(CCFLAGS) -c msdd6000.cc
+ g++ $(CCFLAGS) -o cap4 client5.o msdd6000.o $(LDFLAGS)
+
+
+clean:
+ rm test.out*