#
# Makefile
APP = lcd2usb
all: $(APP)
clean:
rm -f $(APP)
$(APP): $(APP).c
$(CC) -Wall -I/sw/include -o $@ $(APP).c -L/sw/lib -lusb