Add a .gitignore file
[experiments/libturbojpeg1.git] / Makefile
1 CFLAGS = -std=c99 -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
31 LDLIBS += -lturbojpeg
32
33 libturbojpeg1-mem-dest: libturbojpeg1-mem-dest.o
34
35 clean:
36         rm -rf *~ *.o *.jpg libturbojpeg1-mem-dest
37
38 test:
39         valgrind --leak-check=full --show-reachable=yes ./libturbojpeg1-mem-dest