#
# Makefile.cygwin
#

APP = i2c_usb

all: $(APP).exe

clean:
	rm -f $(APP).exe

$(APP).exe: $(APP).c
	$(CC) -Wall -DWIN -o $@ $(APP).c -lusb

 
