summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-08-09 18:34:00 -0700
committerJosh Blum <josh@joshknows.com>2011-08-15 15:37:52 -0700
commitc5c5bacb0e3e4f78b39765857ea129a24363bf11 (patch)
treef54d6bbac843422e5f4995323e08760a49a3722c
parent8c8da1957ede84f6ee959fc27e4b0122d6654404 (diff)
downloaduhd-c5c5bacb0e3e4f78b39765857ea129a24363bf11.tar.gz
uhd-c5c5bacb0e3e4f78b39765857ea129a24363bf11.tar.bz2
uhd-c5c5bacb0e3e4f78b39765857ea129a24363bf11.zip
N2x0: added a Makefile to build all N2x0 projects (make -j4)
-rw-r--r--usrp2/top/N2x0/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/usrp2/top/N2x0/Makefile b/usrp2/top/N2x0/Makefile
new file mode 100644
index 000000000..fa66af565
--- /dev/null
+++ b/usrp2/top/N2x0/Makefile
@@ -0,0 +1,22 @@
+#
+# Copyright 2011 Ettus Research LLC
+#
+
+all: N200R3 N210R3 N200R4 N210R4
+
+clean:
+ rm -rf build*
+
+N200R3:
+ make -f Makefile.$@ bin
+
+N210R3:
+ make -f Makefile.$@ bin
+
+N200R4:
+ make -f Makefile.$@ bin
+
+N210R4:
+ make -f Makefile.$@ bin
+
+.PHONY: all clean