aboutsummaryrefslogtreecommitdiffstats
path: root/old/ft232r/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'old/ft232r/Makefile')
-rw-r--r--old/ft232r/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/old/ft232r/Makefile b/old/ft232r/Makefile
new file mode 100644
index 0000000..6248f5c
--- /dev/null
+++ b/old/ft232r/Makefile
@@ -0,0 +1,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 $@ $^