
all: test

test.o: test.c
	gcc -c test.c

test: test.o
	gcc test.o -o test -lusb

clean:
	rm -f *.o
