summaryrefslogtreecommitdiff
path: root/Makefile
blob: e5b40b88e7a021b15b2c9586a9e4e32e859f0563 (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 cxxopts/src/cxxopts.hpp
	g++ -std=c++11 $(CFLAGS) merge.cc -o merge

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