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
+19
View File
@@ -0,0 +1,19 @@
#
# Makefile.xmingw
#
XMINGW_ROOT = /usr/local/cross-tools/bin
CC = $(XMINGW_ROOT)/i386-mingw32msvc-gcc
APP = lcd2usb
all: $(APP).exe
clean:
rm -f $(APP).exe
$(APP).exe: $(APP).c
$(CC) -Wall -DWIN -o $@ $(APP).c -lusb