Initial import
[experiments/opencv.git] / perspective-transform / Makefile
1 CFLAGS = -ansi -pedantic -pedantic-errors -Wall -g3 -O2 -D_ANSI_SOURCE_
2 CFLAGS += -fno-common \
3           -Wall \
4           -Wdeclaration-after-statement \
5           -Wextra \
6           -Wformat=2 \
7           -Winit-self \
8           -Winline \
9           -Wpacked \
10           -Wp,-D_FORTIFY_SOURCE=2 \
11           -Wpointer-arith \
12           -Wlarger-than-65500 \
13           -Wmissing-declarations \
14           -Wmissing-format-attribute \
15           -Wmissing-noreturn \
16           -Wmissing-prototypes \
17           -Wnested-externs \
18           -Wold-style-definition \
19           -Wredundant-decls \
20           -Wsign-compare \
21           -Wstrict-aliasing=2 \
22           -Wstrict-prototypes \
23           -Wswitch-enum \
24           -Wundef \
25           -Wunreachable-code \
26           -Wunsafe-loop-optimizations \
27           -Wunused-but-set-variable \
28           -Wwrite-strings
29
30 LDLIBS = -lopencv_core -lopencv_highgui -lopencv_imgproc
31
32 opencv-perspective-transform: opencv-perspective-transform.o
33
34 clean:
35         rm -rf *~ *.o opencv-perspective-transform