summaryrefslogtreecommitdiff
path: root/Makefile
blob: 499907803524fc4983ee69d2b0349c74baab49da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS = -lpthread -lstdc++
CFLAGS += `pkg-config --libs opencv`

crop: crop.cc
	g++ $(CFLAGS) crop.cc -o crop

merge: merge.cc
	g++ -std=c++11 $(CFLAGS) merge.cc -o merge

straighten: straighten.cc
	g++ $(CFLAGS) straighten.cc -o straighten