Initial import

This commit is contained in:
Till Harbaum
2016-01-12 20:42:20 +01:00
commit c73d3277fc
65 changed files with 9675 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#
# Makefile
#
APP = lcd2usb
all: $(APP)
clean:
rm -f $(APP)
$(APP): $(APP).c
$(CC) -Wall -o $@ $(APP).c -lusb