summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
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