Files
simtrace/ft232r/Makefile
Harald Welte 41f028df96 Import old unfinished FT232R bit-banging code for sim sniffing
This code never really worked due to large sample clock jitter, lost
USB messages and the lack of CLK sniffing ability
2010-11-18 22:59:40 +01:00

11 lines
154 B
Makefile

LDFLAGS=-lftdi
bitbang: bitbang.o soft_uart.o
$(CC) $(LDFLAGS) -o $@ $^
clean:
rm -f bitbang bitbang.o soft_uart.o
%: %.o
$(CC) $(LDFLAGS) -o $@ $^