CFLAGS = -g -Wall
LDFLAGS = -lusb

all: usbcat

usbcat: usbcat.c Makefile
	gcc ${CFLAGS} -o $@ $< ${LDFLAGS}

