bc9ebc5e906e383e141979f6477b93eb75b607e6
[framework/graphics/cairo.git] / TC / perf / Makefile
1 CC = gcc
2
3 all : fill stroke image
4
5 fill: main.c common.c fill.c
6         $(CC) main.c common.c fill.c -g -o fill `pkg-config --cflags --libs cairo elementary opengl-es-20` -lecore_x -levas -lecore
7
8 stroke: main.c common.c stroke.c
9         $(CC) main.c common.c stroke.c -g -o stroke `pkg-config --cflags --libs cairo elementary opengl-es-20` -lecore_x -levas -lecore
10
11 image: main.c common.c image.c
12         $(CC) main.c common.c image.c -g -o image `pkg-config --cflags --libs cairo elementary opengl-es-20` -lecore_x -levas -lecore
13
14 clean:
15         rm -rf *.0 fill stroke image