Files
LCD2USB/testapp/Makefile
T

15 lines
118 B
Makefile
Raw 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 -o $@ $(APP).c -lusb