expand README to include compilation instructions
[ozzloy@gmail.com/oble] / Makefile
index fd1361f0d5a9270af520d369adbaf0720b6136a6..006e7ea3f04c1ed6bf6b044fe55ec73ce61ab029 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,29 @@
+all: oble
 
-all:
-       gcc `pkg-config --cflags opencv dbus-glib-1` -o hello-world hello-world.cpp `pkg-config --libs dbus-glib-1 opencv`
+PKGS = opencv x11 xext xscrnsaver
+CXXFLAGS += $(shell pkg-config --cflags $(PKGS))
+LDFLAGS += $(shell pkg-config --libs $(PKGS))
 
-dbushello: dbushello.c
-       gcc `pkg-config --cflags dbus-glib-1` -o dbushello dbushello.c `pkg-config --libs dbus-glib-1`
+OBJS = idle_x11.o oble.o
 
+idle_x11.o: idle_x11.h
+oble.o: oble.h
+
+oble: $(OBJS)
+       gcc $(OBJS) $(LDFLAGS) -o $@
+
+#haarcascade_frontalface_alt.xml:
+#      wget http://eclecti.cc/files/2008/03/haarcascade_frontalface_alt.xml
 
 test: all
-       ./hello-world /usr/share/opencv/haarcascades/haarcascade_frontalface_alt.xml
+       ./oble -c haarcascade_frontalface_alt.xml
+
+ubuntu-dependencies:
+       ./initial_oble_setup_ubuntu.bash
 
 clean:
-       rm -rf hello-world tags dbushello
+       rm -rf oble *.o
+
+new: clean all
 
 .PHONY: clean