diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-11 15:33:36 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-11 15:33:36 -0700 |
commit | 0482853a708fead6f2d5baedb4eee6af376333f0 (patch) | |
tree | d6520b765f24a8c781cd124382bd09f4ae7c1407 /host/apps/omap_debug/Makefile | |
parent | 8e5040a9ec0639bc7b110ba96e256c48e5a62df7 (diff) | |
parent | 2b7f944f574527afda8054e3ecb2043b640f2542 (diff) | |
download | uhd-0482853a708fead6f2d5baedb4eee6af376333f0.tar.gz uhd-0482853a708fead6f2d5baedb4eee6af376333f0.tar.bz2 uhd-0482853a708fead6f2d5baedb4eee6af376333f0.zip |
Merge branch 'usrp_e_merge' of ettus.sourcerepo.com:ettus/uhdpriv 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 |