all : test console lights test : usb.o g++ -o $@ $^ -lusb console : console.o g++ -o $@ $^ -lusb lights : lights.o g++ -o $@ $^ -lusb clean : rm -dfr *~ *.o test console