diff options
author | Patrick Simianer <p@simianer.de> | 2017-04-01 21:44:17 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2017-04-01 21:44:17 +0200 |
commit | 4dda9e56c11610c9769360000eaea5b66e63f005 (patch) | |
tree | 817eb7dfd1c8598c6f493594fae2fa0bd92cdd3d | |
parent | 13fd4101f993e22bc0b51ae9237ee782173f9415 (diff) |
make, ignore
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 11 |
2 files changed, 10 insertions, 2 deletions
@@ -2,4 +2,5 @@ crop denoise merge straighten +unsharp-mask test/ @@ -1,12 +1,19 @@ CFLAGS = -lpthread -lstdc++ CFLAGS += `pkg-config --libs opencv` +CFLAGS += -I/Users/pks/.local/include crop: crop.cc - g++ $(CFLAGS) crop.cc -o crop + clang $(CFLAGS) crop.cc -o crop + +denoise: denoise.cc cxxopts/src/cxxopts.hpp + clang -std=c++11 $(CFLAGS) denoise.cc -o denoise 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 + clang $(CFLAGS) straighten.cc -o straighten + +unsharp-mask: unsharp-mask.cc cxxopts/src/cxxopts.hpp + clang -std=c++11 $(CFLAGS) unsharp-mask.cc -o unsharp-mask |