a008ba9bd08d865711c0ae2af06cc2fc307fcf5a
[experiments/opencv_trail_effect.git] / Makefile
1 CXXFLAGS = -ansi -pedantic -pedantic-errors -Wall -g3 -O2 -D_ANSI_SOURCE_
2 CXXFLAGS += -fno-common \
3             -fvisibility=hidden \
4             -Wall \
5             -Wextra \
6             -Wformat=2 \
7             -Winit-self \
8             -Winline \
9             -Wpacked \
10             -Wpointer-arith \
11             -Wlarger-than-65500 \
12             -Wmissing-declarations \
13             -Wmissing-format-attribute \
14             -Wmissing-noreturn \
15             -Wredundant-decls \
16             -Wsign-compare \
17             -Wstrict-aliasing=2 \
18             -Wswitch-enum \
19             -Wundef \
20             -Wunreachable-code \
21             -Wunsafe-loop-optimizations \
22             -Wunused-but-set-variable \
23             -Wwrite-strings \
24             -Wp,-D_FORTIFY_SOURCE=2 \
25             -fstack-protector \
26             --param=ssp-buffer-size=4
27
28 CXXFLAGS += $(shell pkg-config --cflags opencv)
29 LDLIBS += $(shell pkg-config --libs opencv)
30
31 LINK.o = $(LINK.cpp)
32 opencv_trail_effect:
33
34 opencv_trail_effect.o: $(wildcard *.hpp)
35
36 # Some command lines to imitate different trail styles
37
38 blame_it_on_the_boogie: opencv_trail_effect
39         ./opencv_trail_effect -l 12 -s background -d fadeaccumulate
40
41 wtf: opencv_trail_effect
42         ./opencv_trail_effect -l -1 -s background -d copy
43
44 l_anima_vola: opencv_trail_effect
45         ./opencv_trail_effect -l 30 -s background -d copy -r
46
47 average: opencv_trail_effect
48         ./opencv_trail_effect -l 10 -s background -d average -B
49
50 clean:
51         rm -f *.o opencv_trail_effect vgdump gtk.suppression
52
53 test: opencv_trail_effect
54         [ -f gtk.suppression ] || wget -nv https://people.gnome.org/~johan/gtk.suppression
55         G_DEBUG=gc-friendly G_SLICE=always-malloc \
56                 valgrind --tool=memcheck --leak-check=full --leak-resolution=high \
57                 --num-callers=20 --log-file=vgdump \
58                 --suppressions=gtk.suppression ./opencv_trail_effect