pulling out dbus stuff from face detection
[ozzloy@gmail.com/oble] / Makefile
... / ...
CommitLineData
1
2all:
3 gcc `pkg-config --cflags opencv dbus-glib-1` -o hello-world hello-world.cpp `pkg-config --libs dbus-glib-1 opencv`
4
5dbushello: dbushello.c
6 gcc `pkg-config --cflags dbus-glib-1` -o dbushello dbushello.c `pkg-config --libs dbus-glib-1`
7
8
9test: all
10 ./hello-world /usr/share/opencv/haarcascades/haarcascade_frontalface_alt.xml
11
12clean:
13 rm -rf hello-world tags dbushello
14
15new: clean all
16
17.PHONY: clean