Files

20 lines
229 B
Makefile
Raw Permalink Normal View History

2016-01-12 20:42:20 +01:00
#
# 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