mirror of
https://gitea.osmocom.org/sim-card/simtrace.git
synced 2026-03-16 21:28:36 +03:00
11 lines
154 B
Makefile
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 $@ $^
|