CFILES=main.c
OFILES=main.o
CFLAGS=-O2 -Wall
LDFLAGS=-lusb

test: $(OFILES)
	gcc $(LDFLAGS) $(OFILES) -o test

main.o: main.c

clean:
	rm *.o test
