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