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 0e7e3a5..45ce1bf 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,10 @@ cvg_LIBS=$(shell pkg-config --libs gtk+-3.0 glib-2.0 gmodule-2.0 opencv)
hst_CFLAGS=$(shell pkg-config --cflags gdk-pixbuf-2.0 glib-2.0)
hst_LIBS=$(shell pkg-config --libs gdk-pixbuf-2.0 glib-2.0)
-PROGS = wimmel wimmel_gl roi capture unvignette cvg hst
+harris_CFLAGS=$(shell pkg-config --cflags gdk-pixbuf-2.0 glib-2.0)
+harris_LIBS=$(shell pkg-config --libs gdk-pixbuf-2.0 glib-2.0)
+
+PROGS = wimmel wimmel_gl roi capture unvignette cvg hst harris
OBJS = $(PROGS:=.o) util.o
all: $(PROGS)
@@ -37,6 +40,7 @@ capture: capture.o
unvignette: unvignette.o
cvg: cvg.o
hst: hst.o
+harris: harris.o
.PHONY: clean all