diff options
Diffstat (limited to 'host/apps/omap_debug/Makefile')
-rw-r--r-- | host/apps/omap_debug/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/host/apps/omap_debug/Makefile b/host/apps/omap_debug/Makefile new file mode 100644 index 000000000..13b834e28 --- /dev/null +++ b/host/apps/omap_debug/Makefile @@ -0,0 +1,19 @@ +CFLAGS=-Wall + +all : usrp-e-spi usrp-e-i2c usrp-e-rw usrp-e-uart + +usrp-e-spi : usrp-e-spi.c + +usrp-e-i2c : usrp-e-i2c.c + +usrp-e-rw : usrp-e-rw.c + gcc -o $@ $< -lpthread + +usrp-e-uart : usrp-e-uart.c + +clean : + rm -f usrp-e-spi + rm -f usrp-e-i2c + rm -f usrp-e-rw + rm -f usrp-e-uart + |