cleanup. mostly notes, not code
[ozzloy@gmail.com/oble] / Makefile
CommitLineData
b7e484d5 1
124727d2 2all: oble
b8b01547 3
124727d2 4oble: oble.cpp oble.h
5 gcc `pkg-config --cflags opencv` -o oble oble.cpp `pkg-config --libs opencv`
b8b01547 6
7test: all
e0c48375 8 ./oble /usr/share/opencv/haarcascades/haarcascade_frontalface_alt.xml
4d640880 9
10clean:
124727d2 11 rm -rf oble
4d640880 12
79292335 13new: clean all
14
4d640880 15.PHONY: clean
e0c48375 16