### compile with liblo OSC INCLUDES=`pkg-config --cflags opencv` LIBS=`pkg-config --libs opencv` CFLAGS=-g -O3 -Wall OUTPUT=camproxy SOURCES=camproxy.c OBJS=$(SOURCES:.c=.o) TESTOBJS=testdetect.o configfile.o detector.o trigono.o cv_util.o all: $(OBJS) gcc -ggdb -o $(OUTPUT) $(OBJS) $(LIBS) testdetect: $(TESTOBJS) gcc -ggdb -o testdetect $(TESTOBJS) $(LIBS) clean: rm -f $(OUTPUT) *.o .c.o: $(CC) $(CFLAGS) -c $< $(INCLUDES)