From 27093f569743eff0722da30bd464a991e2e68ffb Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 18 Apr 2012 16:13:11 +0200 Subject: Add a simple GTK3 based OpenCV gauß-filter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index afdc528..d80fd4c 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,10 @@ capture_LIBS=$(shell pkg-config --libs gtk+-3.0 opencv glib-2.0) unvignette_CFLAGS=$(shell pkg-config --cflags cairo) unvignette_LIBS=$(shell pkg-config --libs cairo) -lm -PROGS = wimmel wimmel_gl roi capture unvignette +gauss_cv_CFLAGS=$(shell pkg-config --cflags gtk+-3.0 gmodule-2.0 opencv) +gauss_cv_LIBS=$(shell pkg-config --libs gtk+-3.0 gmodule-2.0 opencv) + +PROGS = wimmel wimmel_gl roi capture unvignette gauss_cv OBJS = $(PROGS:=.o) util.o all: $(PROGS) @@ -29,6 +32,7 @@ wimmel_gl: wimmel_gl.o util.o roi: roi.o capture: capture.o unvignette: unvignette.o +gauss_cv: gauss_cv.o .PHONY: clean all -- cgit