aboutsummaryrefslogtreecommitdiffstats
path: root/host/apps/omap_debug/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'host/apps/omap_debug/Makefile')
-rw-r--r--host/apps/omap_debug/Makefile6
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
+