diff options
author | Philip Balister <philip@opensdr.com> | 2010-03-25 20:43:59 +0000 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-03-25 20:43:59 +0000 |
commit | 717a6acd2b0687348c492cbf2e0813ffd63d847a (patch) | |
tree | d122ff9ed985406c14c57f97ac47e7dac7359b56 /host/apps/omap_debug/Makefile | |
parent | 28e5e0740a8fc3c7233a1bd5cc6bbc897c586da6 (diff) | |
download | uhd-717a6acd2b0687348c492cbf2e0813ffd63d847a.tar.gz uhd-717a6acd2b0687348c492cbf2e0813ffd63d847a.tar.bz2 uhd-717a6acd2b0687348c492cbf2e0813ffd63d847a.zip |
Update read/write test program to new header name and add to Makefile.
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 07545a639..34446ccc3 100644 --- a/host/apps/omap_debug/Makefile +++ b/host/apps/omap_debug/Makefile @@ -1,11 +1,15 @@ CFLAGS=-Wall -all : usrp-e-spi usrp-e-i2c +all : usrp-e-spi usrp-e-i2c usrp-e-rw usrp-e-spi : usrp-e-spi.c usrp-e-i2c : usrp-e-i2c.c +usrp-e-rw : usrp-e-rw.c + gcc -o $@ $< -lpthread clean : rm -f usrp-e-spi rm -f usrp-e-i2c + rm -f usrp-e-rw + |