aboutsummaryrefslogtreecommitdiffstats
path: root/host/apps/omap_debug/Makefile
blob: 13b834e28341352a11d8d8f8d7d7e1fc436460b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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