mirror of
https://github.com/bspeice/libcvautomation
synced 2025-01-08 06:51:27 -05:00
a4906c7d9a
Original program can be found here: http://nashruddin.com/template-matching-in-opencv-with-example.html
17 lines
389 B
Makefile
17 lines
389 B
Makefile
all: cva-match
|
|
|
|
debug: cva-match-debug
|
|
gcc cva-match.o `pkg-config --libs opencv` -o cva-match
|
|
|
|
cva-match: cva-match.o
|
|
gcc cva-match.o `pkg-config --libs opencv` -o cva-match
|
|
|
|
cva-match-debug: cva-match-debug.o
|
|
gcc cva-match.c -DDEBUG `pkg-config --cflags opencv` -c -o cva-match.o
|
|
|
|
cva-match.o:
|
|
gcc cva-match.c `pkg-config --cflags opencv` -c -o cva-match.o
|
|
|
|
clean:
|
|
rm *.o cva-match
|