From bf6cdc43d6eb07d7c457f44fb0bb915ce8243d56 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Fri, 30 Sep 2016 13:00:51 +0200 Subject: Makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0be1da4 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +CFLAGS = -lpthread -lstdc++ +CFLAGS += `pkg-config --libs opencv` + +crop: crop.cpp + g++ $(CFLAGS) crop.cpp -o crop + +straighten-img: straighten-img.cpp + g++ $(CFLAGS) straighten-img.cpp -o straighten-img + -- cgit v1.2.3