blob: fdd507394bfb3d32b509ab8b0437220bf63df03f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#
# Copyright 2011 Ettus Research LLC
#
all: B100 B100_2RX
find -name "*.twr" | xargs grep constraint | grep met
clean:
rm -rf build*
B100:
make -f Makefile.$@ bin
B100_2RX:
make -f Makefile.$@ bin
.PHONY: all clean
|