diff options
author | Philip Balister <philip@opensdr.com> | 2010-04-23 14:04:37 +0000 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-04-23 14:04:37 +0000 |
commit | f5b6776a0b642c0357fbecdead9d2b1ac6ece3d3 (patch) | |
tree | a37d4b1adfff269093ee32b08923211da818dbd8 /host/apps/omap_debug/Makefile | |
parent | eb2f38d4af5345a64cd1feb92fa5cb44433d037b (diff) | |
download | uhd-f5b6776a0b642c0357fbecdead9d2b1ac6ece3d3.tar.gz uhd-f5b6776a0b642c0357fbecdead9d2b1ac6ece3d3.tar.bz2 uhd-f5b6776a0b642c0357fbecdead9d2b1ac6ece3d3.zip |
Updates to test programs.
Diffstat (limited to 'host/apps/omap_debug/Makefile')
-rw-r--r-- | host/apps/omap_debug/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/host/apps/omap_debug/Makefile b/host/apps/omap_debug/Makefile index 61f659b3e..b00210c4f 100644 --- a/host/apps/omap_debug/Makefile +++ b/host/apps/omap_debug/Makefile @@ -1,6 +1,6 @@ CFLAGS=-Wall -I../../lib/usrp/usrp_e/ -all : usrp-e-spi usrp-e-i2c usrp-e-rw usrp-e-uart usrp-e-led usrp-e-ctl usrp-e-button usrp-e-uart-rx fpga-downloader usrp-e-gpio usrp-e-debug-pins +all : usrp-e-spi usrp-e-i2c usrp-e-rw usrp-e-uart usrp-e-led usrp-e-ctl usrp-e-button usrp-e-uart-rx fpga-downloader usrp-e-gpio usrp-e-debug-pins usrp-e-rw-random usrp-e-spi : usrp-e-spi.c @@ -9,6 +9,9 @@ usrp-e-i2c : usrp-e-i2c.c usrp-e-rw : usrp-e-rw.c gcc -o $@ $< -lpthread +usrp-e-rw-random : usrp-e-rw-random.c + gcc -o $@ $< -lpthread + usrp-e-uart : usrp-e-uart.c usrp-e-uart-rx : usrp-e-uart-rx.c @@ -28,6 +31,7 @@ clean : rm -f usrp-e-spi rm -f usrp-e-i2c rm -f usrp-e-rw + rm -f usrp-e-rw-random rm -f usrp-e-uart rm -f usrp-e-uart-rx rm -f usrp-e-led |