diff options
author | Philip Balister <philip@opensdr.com> | 2010-08-11 22:28:17 +0000 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-08-11 22:28:17 +0000 |
commit | 2b7f944f574527afda8054e3ecb2043b640f2542 (patch) | |
tree | 8caa4e38336ed52b2594755319a57e4cf21910e4 /host/apps/omap_debug/Makefile | |
parent | 3f25b6fee4a7788ffea0224cb79bb6334b621992 (diff) | |
parent | a58b90ef219746e927a777efba919db15d139e84 (diff) | |
download | uhd-2b7f944f574527afda8054e3ecb2043b640f2542.tar.gz uhd-2b7f944f574527afda8054e3ecb2043b640f2542.tar.bz2 uhd-2b7f944f574527afda8054e3ecb2043b640f2542.zip |
Merge branch 'usrp_e' into usrp_e_merge
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 c11609bdd..46d4714a8 100644 --- a/host/apps/omap_debug/Makefile +++ b/host/apps/omap_debug/Makefile @@ -1,7 +1,7 @@ CFLAGS=-Wall -I../../lib/usrp/usrp_e/ -march=armv7-a -mtune=cortex-a8 -mfpu=neon -O3 CXXFLAGS=-Wall -I../../lib/usrp/usrp_e/ -march=armv7-a -mtune=cortex-a8 -mfpu=neon -O3 -all : usrp-e-spi usrp-e-i2c usrp-e-loopback 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-random-loopback usrp-e-timed usrp-e-lb-test usrp-e-crc-rw clkgen-config +all : usrp-e-spi usrp-e-i2c usrp-e-loopback usrp-e-mm-loopback 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-random-loopback usrp-e-timed usrp-e-lb-test usrp-e-crc-rw clkgen-config usrp-e-spi : usrp-e-spi.c @@ -10,6 +10,9 @@ usrp-e-i2c : usrp-e-i2c.c usrp-e-loopback : usrp-e-loopback.c gcc -o $@ $< -lpthread ${CFLAGS} +usrp-e-mm-loopback : usrp-e-mm-loopback.c + gcc -o $@ $< -lpthread ${CFLAGS} + usrp-e-timed : usrp-e-timed.c gcc -o $@ $< -lpthread ${CFLAGS} @@ -42,6 +45,7 @@ clean : rm -f usrp-e-spi rm -f usrp-e-i2c rm -f usrp-e-loopback + rm -f usrp-e-mm-loopback rm -f usrp-e-timed rm -f usrp-e-rw-random rm -f usrp-e-uart |