From 6def6d1568a9d710fe0f2f05b96a014ae180a506 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Tue, 17 Apr 2012 20:37:28 +0200 Subject: Add a very simple vignetting-reduction program Its called unvignette.c. Has no dynamic adjustment yet, and operatoes only in x-direction. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit