diff options
author | Philip Balister <balister@moose.(none)> | 2010-05-07 15:45:31 -0400 |
---|---|---|
committer | Philip Balister <balister@moose.(none)> | 2010-05-07 15:45:31 -0400 |
commit | 8df3a38c3be477a02c4b9d636a3ddd647e55e4a5 (patch) | |
tree | bac82e94ab78a9db25f6f99933425b4693dd4a4e /host/apps/omap_debug/Makefile | |
parent | b47920906bd1b0480bbcd8427b2d703889cb78e3 (diff) | |
download | uhd-8df3a38c3be477a02c4b9d636a3ddd647e55e4a5.tar.gz uhd-8df3a38c3be477a02c4b9d636a3ddd647e55e4a5.tar.bz2 uhd-8df3a38c3be477a02c4b9d636a3ddd647e55e4a5.zip |
First pass at data transfer program that uses CRC.
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 14be592ff..9b590b9f7 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 usrp-e-rw-random usrp-e-fpga-rw usrp-e-lb-test +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-fpga-rw usrp-e-lb-test usrp-e-crc-rw usrp-e-spi : usrp-e-spi.c @@ -15,6 +15,9 @@ usrp-e-fpga-rw : usrp-e-fpga-rw.c usrp-e-rw-random : usrp-e-rw-random.c gcc -o $@ $< -lpthread +usrp-e-crc-rw : usrp-e-crc-rw.c + gcc -o $@ $< -lpthread + usrp-e-uart : usrp-e-uart.c usrp-e-uart-rx : usrp-e-uart-rx.c @@ -47,3 +50,4 @@ clean : rm -f usrp-e-gpio rm -f usrp-e-debug-pins rm -f usrp-e-lb-test + rm -f usrp-e-crc-rw |