aboutsummaryrefslogtreecommitdiffstats
path: root/old/ft232r/Makefile
blob: 6248f5c51b5df3f232ec7c434f022ee9f79590d6 (plain)
1
2
3
4
5
6
7
8
9
10
LDFLAGS=-lftdi

bitbang: bitbang.o soft_uart.o
	$(CC) $(LDFLAGS) -o $@ $^

clean:
	rm -f bitbang bitbang.o soft_uart.o

%: %.o
	$(CC) $(LDFLAGS) -o $@ $^