Files

16 lines
145 B
Makefile
Raw Permalink Normal View History

2016-01-12 20:42:20 +01:00
#
# Makefile.xmingw
#
APP = lcd2usb
all: $(APP).exe
clean:
rm -f $(APP).exe
$(APP).exe: $(APP).c
$(CC) -Wall -DWIN -o $@ $(APP).c -lusb