Fixing our multiple report pixel transfer.
Implementing support for off screen mode which is now the default.
On screen mode is there for debug pruposes.
1 ###########################################
2 # Simple Makefile for HIDAPI test program
7 ###########################################
15 OBJS=$(COBJS) $(CPPOBJS)
16 CFLAGS=-I../hidapi -Wall -g -c `fox-config --cflags` `pkg-config libusb-1.0 --cflags`
17 LIBS=-ludev -lrt -lpthread `fox-config --libs` `pkg-config libusb-1.0 --libs`
21 g++ -Wall -g $^ $(LIBS) -o testgui
24 $(CC) $(CFLAGS) $< -o $@
26 $(CPPOBJS): %.o: %.cpp
27 $(CXX) $(CFLAGS) $< -o $@