Files

15 lines
142 B
Makefile
Raw Permalink Normal View History

2016-01-12 20:42:20 +01:00
#
# Makefile
#
APP = lcd2usb
all: $(APP)
clean:
rm -f $(APP)
$(APP): $(APP).c
$(CC) -Wall -I/sw/include -o $@ $(APP).c -L/sw/lib -lusb