summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2012-04-17 20:37:28 +0200
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2012-04-17 21:32:04 +0200
commit6def6d1568a9d710fe0f2f05b96a014ae180a506 (patch)
treee6e0ce8b2cfb57efdfd648e95fd9697eb59494cf /Makefile
parentcae4b8ed522c0302dd4db994ffcf509f0a245535 (diff)
downloadcv-6def6d1568a9d710fe0f2f05b96a014ae180a506.tar.gz
cv-6def6d1568a9d710fe0f2f05b96a014ae180a506.tar.bz2
cv-6def6d1568a9d710fe0f2f05b96a014ae180a506.zip
Add a very simple vignetting-reduction program
Its called unvignette.c. Has no dynamic adjustment yet, and operatoes only in x-direction.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 30f407f..afdc528 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,10 @@ roi_LIBS=$(shell pkg-config --libs gtk+-3.0 gdk-pixbuf-2.0 glib-2.0)
capture_CFLAGS=$(shell pkg-config --cflags gtk+-3.0 opencv glib-2.0)
capture_LIBS=$(shell pkg-config --libs gtk+-3.0 opencv glib-2.0)
-PROGS = wimmel wimmel_gl roi capture
+unvignette_CFLAGS=$(shell pkg-config --cflags cairo)
+unvignette_LIBS=$(shell pkg-config --libs cairo) -lm
+
+PROGS = wimmel wimmel_gl roi capture unvignette
OBJS = $(PROGS:=.o) util.o
all: $(PROGS)
@@ -25,6 +28,7 @@ wimmel: wimmel.o util.o
wimmel_gl: wimmel_gl.o util.o
roi: roi.o
capture: capture.o
+unvignette: unvignette.o
.PHONY: clean all