update install for ubuntu 11.04
[ozzloy@gmail.com/oble] / Makefile
CommitLineData
124727d2 1all: oble
b8b01547 2
4f219a9f 3PKGS = opencv x11 xext xscrnsaver
4CXXFLAGS += $(shell pkg-config --cflags $(PKGS))
5LDFLAGS += $(shell pkg-config --libs $(PKGS))
6
7OBJS = idle_x11.o oble.o
8
9idle_x11.o: idle_x11.h
10oble.o: oble.h
11
12oble: $(OBJS)
13 gcc $(LDFLAGS) -o $@ $(OBJS)
b8b01547 14
15test: all
5a96bc78 16 ./oble -c /usr/share/opencv/haarcascades/haarcascade_frontalface_alt.xml
4d640880 17
1ddec340 18dependencies:
19 sudo aptitude install -y libxss-dev
20
4d640880 21clean:
4f219a9f 22 rm -rf oble *.o
4d640880 23
79292335 24new: clean all
25
4d640880 26.PHONY: clean