aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..d8f92b8
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+CXX = g++
+CXXFLAGS = -Wall -Wextra -std=c++11 -O2 -g -fwrapv
+LDFLAGS = -llept -ltesseract
+
+.PHONY: all clean
+
+all: shot
+
+clean:
+ rm -f shot *.o
+
+
+shot: $(patsubst %.cpp,%.o,$(wildcard *.cpp))
+ $(CXX) -o $@ $^ $(LDFLAGS)
+
+%.o: %.cpp $(wildcard *.h)
+ $(CXX) $(CXXFLAGS) -c -o $@ $<